a6daf7152 ^
abb738146 ^
1
2
3 4 5 6 7 8 9 10 11 12 13 14
discard """ output: '''61, 125''' """ proc `^` (a, b: int): int = result = 1 for i in 1..b: result = result * a var m = (0, 5) var n = (56, 3) m = (n[0] + m[1], m[1] ^ n[1]) echo m[0], ", ", m[1]