Jon Strait

Results 5 comments of Jon Strait

The generated Lua code may be reasonably clever in doing what it needs to do to implement Moonscript efficiently. This seems like an acceptable compromise. Do you see yourself needing...

It's not that, it's this. ```lua i = if fflag 1 else local i i = 1 while next(i) i += 1 i ``` It's also an issue with the...

Could also promote the semicolon to be a statement, like Lua did. Then the semicolon could hold the 'empty' block and wouldn't need to be removed when the real block...

The idea is for the element name string and optional attribute table to appear together as a unit before the children HTML elements would be passed as arguments or as...

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 =...