Simple Cyclone program
function sum(a:int, b: int):int{ return a + b } var x = sum(1, 2) print(string(x))