8 lines
87 B
Text
8 lines
87 B
Text
a = true
|
|
b = false
|
|
|
|
if a
|
|
println "a is true"
|
|
else if b
|
|
println "b is true"
|
|
end
|