moonscript icon indicating copy to clipboard operation
moonscript copied to clipboard

repeat..until

Open aleclarson opened this issue 7 years ago • 2 comments

Why is repeat..until not supported by MoonScript?

Would you consider adding do..while instead?

aleclarson avatar Mar 12 '18 20:03 aleclarson

Agreed, this could be useful.

safazi avatar Aug 26 '18 21:08 safazi

I use while true..break if and to me, it's just as clear.

The lua repeat example in PIL can be written as:

sqr =  x/2
while true
  sqr = (sqr + x/sqr)/2
  error = math.abs sqr^2 - x
  break if error < x/10000

strait avatar May 21 '19 23:05 strait