This Structure:
var $t = _;
draw = function() {
// You can add whatever code you want here, it still passes
var s = "My cat is fluffy";
};
matches true to:
// For loop has to be before draw
for (var x = 0; x < 1; x++) {
var a = 0; // This line is not necessary on the demo
}
// Var is required here
var draw = function() {
};
The problem is present in both KA and the demo.
This Structure:
matches true to:
The problem is present in both KA and the demo.