Pinky/tests/program.pinky

10 lines
128 B
Plaintext

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