/** * Add two numbers together */ function add(int a, int b) int { return a + b; } print(add(1, 1) as str);