Skip to content

0.1.0-alpha

Pre-release
Pre-release
Compare
Choose a tag to compare
@Ido-Barnea Ido-Barnea released this 29 May 19:02
· 9 commits to master since this release

Added:

  • Constants, declared as const [ identifier] = [ value ]
  • Return statements. every function returns null unless instructed otherwise
  • The ability to change the value of items in a list.

var myList = [1, 2, 3, 4]
myList[0] = 9 -> [9, 2, 3, 4]
myList[0, 2] = 5 -> [5, 2, 5, 4]