Major features of Elite v0.5.0
* Fixed lots of bugs.
* Support scripting API.
* Powerful XML Literals support, see samples/xml.xel
* Add the reference of ELite Language
How to run Elite examples:
1. download ELite from http://sourceforge.net/projects/aom-elite, the lastest version is 0.2.
2. unzip elite-${version}.zip into a dictionary, for example /usr/local/elite-${version}
3. run elite.sh
#cd /usr/local/elite-${version}/bin
#./elite.sh ../samples/dsl.xel
#./elite.sh ../samples/list.xel
Major features of Elite v0.2
* Strong DSL ability. User can use it as a domain specific language whose grammar is more similar to nature language.
define syntax {
Convert :amount :from into :to
=> :amount[:from] -> :to
}
print(Convert 25 DEM into ECU);
Output:12.782297029905463 ECU... read more