schala/conditional.schala
greg 9b62efc830 Fix conditional parsing
Needed to account for semicolons/newlines. Maybe need to generalize
delimiter-separated list of things
2017-09-19 22:10:58 -07:00

9 lines
77 B
Plaintext

if 20 then
a = 20
b = 30
c = 40
a + b + c
else
Null
end