how to build efene
to build efene you need to get the sources by doing
git clone git://github.com/marianoguerra/efene.git
you will also need erlang and the go compiler installed on your machine
then just do
cd efene/src
./build.sh
this will build the erlang modules and the efene compiler frontend (which is written in go)
after that you can go to the examples dir to see some real world code, you can compile it and run it doing
cd efene/examples # or cd ../examples if you are in efene/src
./build.sh
./run.sh
you can convert all the examples to erlang if you want by doint
./toerlang.sh
to run an individual file you must run (assuming you are in the examples directory)
../bin/fn arraycb run
where fn is the program that runs your program, arraycb is the program that you want to run and run is the method you want to invoke inside the arraycb program
now go out and write some code, you have all the erlang standard library to play with!