Files
gf-core/examples/test/srg/left-recursive/left-recursive.gf
2008-10-20 11:11:59 +00:00

8 lines
92 B
Plaintext

cat S;
fun f : S -> S ;
g : S ;
lin f x = { s = x.s ++ "f" } ;
g = { s = "s" } ;