bit-hack/nano-script

Add increment/decrement operators

Closed this issue · 1 comments

Increment and decrement operators would make code more concise.

function test(count)
  while (count)
    count -= 1
  end
end

I added += in commit: 2bff688
I don't think we need decrement.