Using the 'genie' programming language outside of Puppy Linux

I would like to try programming genie , but I can not find the source code for it, nor any version control repository. Does anyone know where to find it?

+4
source share
2 answers

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

It makes sense that the Genie sources are in the vala tree, because you have to use valac to compile Genie scripts. Without looking at the source, I assume that Jin is simply being transferred to Vala.

+2
source

With Ubuntu 12.4, enter only:

 $ sudo apt-get install valac 

After you can use some libreries, such as:

1) GTK +

 $ sudo apt-get install libgtk2.0-dev 

2) Dynamic lists

 $ sudo apt-get install gee-1.0 

3) Program IDE: There is also Valide, but it is not in the repositories.

 $ sudo apt-get install geany 

and more, see Valadoc.org

I need a code: www.manualgenie.blogspot.com

+1
source

Source: https://habr.com/ru/post/1305573/


All Articles