Press Cmd+R to run your Move code
Move
Tips and ticks, baby
hello_to = ^(name){ "Hello "+name } repeat {times: 3} ^{ print hello_to {name: "John"} } numbers = [1,2,2,3,1].unique() print numbers numbers.sort().forEach ^(number){ print "Number: "+number } Cat = {age: 5} Dog = Object.create Cat print Dog.age Cat.name = "Zelda" print Dog.name # <- by inferred inheritance from Cat Dog.name = "Lassie" print(Dog.name, Cat.name)