You can play with EOLANG here, in a few simple steps:
First, clone this repo to your local machine and go
to the sandbox directory (you will need
Git
installed):
$ git clone https://github.com/cqfn/eo.git
$ cd eo/sandboxThen, compile the code (you will need Maven 3.3+ and Java SDK 8+ installed):
$ mvn compileIntermediary *.xml files will be generated in the target directory (it will
be created). Also, there will be *.java and *.class files. Feel free to analyze
them: EO is parsed into XML, then translated to Java, and then compiled
by Java SDK to Java bytecode. Finally, just run the bytecode program through JRE:
$ ./run.sh 4 3 2
2 3 4Should work.
Then, you can modify *.eo files, run mvn compile to compile them
again and run.sh to run it again.