rocket-lang
rocket-lang copied to clipboard
Consider dropping braces requirement for control expressions
Consider the support of:
a="test"
if a.type() == "STRING"
puts("is a string")
else
puts("is not a string")
end
while a != 4
puts(a)
a = a + 1
end