This directory includes the small GF example grammar from the book (one abstract and one concrete module). They can be used with the stand-alone GF system, from the command line. Below is an example interaction with the GF system: GF is started, the concrete module ExampleEng is loaded, and then you can parse and linearize with respect to ExampleEng. $ gf Welcome to Grammatical Framework, Version 2.6 > i ExampleEng.gf - compiling Example.gf... wrote file Example.gfc 39 msec - compiling ExampleEng.gf... wrote file ExampleEng.gfc 48 msec > parse -cat=Expr "the maximum of 2 and 7" maxQ (intLit 2) (intLit 7) > linearize maxQ (intLit 2) (intLit 7) the maximum of 2 and 7 >