Skip to content

v0.2.0

Compare
Choose a tag to compare
@qsctr qsctr released this 13 Nov 05:00
· 118 commits to master since this release

New features:

  • Native function definitions
    def native add
        x y -> x + y
    
  • Native let bindings
    let native pi = Math.PI
    let native print = console.log
    
  • main function
    def main
        _ -> print "hello world"