# Tests the creation and use of custom operators import std; operator `sum`(a, b: int): int { return a + b; } print(2 sum 2); # 4