rocket-lang icon indicating copy to clipboard operation
rocket-lang copied to clipboard

Consider dropping braces requirement for control expressions

Open Flipez opened this issue 2 years ago • 0 comments

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

Flipez avatar Nov 28 '23 21:11 Flipez