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
2010-03-30 16:54:43
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
2010-08-29 20:32:54