A Python-like programming language built entirely using Haxe metaprogramming. It is converted to Haxe AST and 100% interoperable with Haxe projects/libraries.
Install from haxelib
haxelib install laxe
Add to project, and set class path to src/
.
Class path can be the same as -cp
.
You can even mix .hx
and .lx
within the same directory.
-lib laxe
-D laxe-cp=src
Make some .lx
files and put some Laxe code inside.
def main():
trace("Hello there.")