Files
hakorune/local_tests/basic_math.nyash
2025-08-13 05:06:43 +00:00

13 lines
184 B
Plaintext

// Basic arithmetic test
local a, b, c, d, flag
a = 10
b = 20
c = a + b
print("10 + 20 = " + c)
d = c * 2
print("30 * 2 = " + d)
// Boolean test
flag = true
print("Flag is: " + flag)