0.1.0-alpha
Pre-release
Pre-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]