10 lines
135 B
Plaintext
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 |