Skip to content

Latest commit

 

History

History
33 lines (22 loc) · 572 Bytes

README.md

File metadata and controls

33 lines (22 loc) · 572 Bytes

LAXE

A Python-like programming language built entirely using Haxe metaprogramming. It is converted to Haxe AST and 100% interoperable with Haxe projects/libraries.

Hypothetically, this is how it would work:


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.")