Skip to content

Release v0.3.0

Compare
Choose a tag to compare
@github-actions github-actions released this 20 Jan 11:26
· 0 commits to a8cb9f5b8268abaec6714583ea15c5cd73a9e10d since this release
v0.3.0
9ffb0ae

Changes in this Release:

  • Anonymous function support added
    var a = func(){
            var  b = func(){
                  cmd.println("Hello, World!");
            }
            b();
    }