elizarov
10/29/2016, 6:52 PMlet myValue: Int = 66
let myNewValue: Int = square(increment(myValue))
which they want to be able to write like this:
let myValue: Int = 66
let myNewValue: Int = myValue
|> increment
|> square