candor icon indicating copy to clipboard operation
candor copied to clipboard

Experimental VM for a `Candor` language

Results 4 candor issues
Sort by recently updated
recently updated
newest added

explicit scoping is much clearer, because if I see a function ``` js thing () { var whatever = 3 log(whateve) } ``` then I KNOW `whatever` is only used...

Please, consider answering some naive ones: 1. why coercing comparison retains: `==`, `!=`. they are known as source of subtle bugs in JS, and every tutorial i read said i...

I'll collect here some parser quirks `Unexpected '.' or '['` for ``` candor a = [,1,2,3] ``` ``` candor a = [1,2,3,,] ```