fn add(a int, b int) int { return a + b; } let sum = add(1, 1); print(sum.toS());