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