Closed ghost closed 4 years ago
Currently, variables are declared separately (terminating in semicolons) like so:
var1 = 0; var2 = 0; var3 = 0;
Although this is just for sugar purposes, would it be possible to implement:
var1, var2, var3 = 0;
This is some nice sugar, but I don't think the change is needed enough to warrant being in the rewrite, so I'll just move this to maybe be in v2.
Currently, variables are declared separately (terminating in semicolons) like so:
Although this is just for sugar purposes, would it be possible to implement: