tags:

views:

192

answers:

1

I would like to try programming genie, but I can't find neither source code for it nor any version control repository. Does anybody know where can it be found?

+2  A: 

It looks like the sources are all in the valagenie{parser,scanner,tokentype}.vala files at Gnome's git repo.

It makes sense that Genie's sources are in the vala tree because you have to use valac to compile Genie scripts. Without actually examining the source, I'm presuming that Genie just gets translated to Vala.

Mark Rushakoff
Genie is really just an alternative syntax to Vala - so there is just a separate lexer and parser for Genie in the Vala compiler. (Translating Genie to Vala and then Vala to C would be silly.)
Zifre