10 lines
127 B
Plaintext
10 lines
127 B
Plaintext
# initialise variables
|
|
pi := 3.141592
|
|
|
|
x := 8.23
|
|
|
|
if x >= 0 then
|
|
println ("x is positive")
|
|
else
|
|
println ("x is negative")
|
|
end |