Saturday, August 27, 2011

These are the same way of describing the function called square.

def square(x){
(x, x) > mul > return;
}
def square(x){
|= mul
|< (x, x)
|> return;
}
def square(x){
return > |= mul
|< x
|< x;
}
view raw gistfile1.go hosted with ❤ by GitHub