add = Func(a: Int, b: Int): Int {
return a + b;
}
main = Func(): Int {
print("apples %i", add(2, 3));
return 0;