tadeuzagallo / verve-lang

A functional language for the working hacker
https://verve-lang.org
MIT License
346 stars 7 forks source link

Implement basic let syntax #13

Closed tadeuzagallo closed 8 years ago

tadeuzagallo commented 8 years ago

Most basic example:

foo(): Void {
  let a = 1 {
    print(a)
  }
}
tadeuzagallo commented 8 years ago

Implemented on 0d66a18