if.ti (113B)
1 2 3 4 5 6 7 8 9 10 11 12 13 14
func test (int y) -> int: { int z = 2; return y * z; } int x = 3; if 3 == x: { x = x + 1; } print test(x);