Files
nub-lang/examples/math/math.nub
nub31 576abe1240 ...
2026-02-10 22:26:18 +01:00

6 lines
69 B
Plaintext

module math
export func add(a: i32 b: i32): i32
{
return a + b
}