peon/tests/operators.pn

10 lines
142 B
Plaintext
Raw Normal View History

# Tests the creation and use of custom operators
import std;
operator `sum`(a, b: int): int {
return a + b;
2022-06-14 22:45:41 +02:00
}
print(2 sum 2); # 4