Yet Another Programming Language.
Features:
- Object oriented.
- Syntax similar to Python & SLang.
- flex: Lexical analysis.
$ sudo aptitude install flex
- bison: Parser genarator.
$ sudo aptitude install bison
- boost: Boost C++ library.
$ sudo aptitude install libboost-dev
- cmake: Build tool
$ sudo aptitude install cmake
- doxygen: To generae doc.
$ sudo aptitude install doxygen
- graphviz: To generate class diagrame.
$ sudo aptitude install graphviz
- To generate doc, inside /path/to/ALang/Resources/Doc/
$ doxygen doxygen.cfg
- Inside /path/to/ALang
$ cmake .
$ make
- Inside /path/to/ALang
$ Src/ALang Resources/Example/Script.1.al