peon/tests/operators.pn

10 lines
147 B
Plaintext
Raw Permalink 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
}
2022-12-05 19:19:38 +01:00
print(2 sum 2 == 4); # 4