peon/tests/operators.pn

10 lines
147 B
Plaintext

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