Files
aster/examples/use_math.ast
T
2026-06-17 15:57:45 +08:00

5 lines
120 B
Plaintext

let math = require("math_mod.ast");
print(math.add(10, 32));
print(math.mul(6, 7));
print(math.add(math.mul(2, 3), 1));