Pinky/tests/program.pinky
2025-07-05 11:36:16 -05:00

10 lines
135 B
Plaintext

-- initialise variables
pi := 3.141592
x := 8.23 - -3.5
if x >= 0 then
println ("x is positive")
else
println ("x is negative")
end