[linear@construct parser]$ ../compiler.py constants.nv movement.nv input.nv equality.nv whitespace.nv main.nv > parser.c
[linear@construct parser]$ gcc -O3 parser.c -o parser
[linear@construct parser]$ cat lingo.nv 
|| self, sad, other, other, water, eye
,, creature, garden, reason, destruction
,, see, then

|| self, sad, other, other, water, eye
,, mo, see, then

|| self, ne, see, then


|| this is a sample
[linear@construct parser]$ cat lingo.nv | ./parser 

self
sad
other
other
water
eye


creature
garden
reason
destruction


see
then




self
sad
other
other
water
eye


mo
see
then




self
ne
see
then





this is a sample

[linear@construct parser]$ 
