1 comments

  • Lerc1 hour ago
    I think there&#x27;s something to that.<p>My starter program for 9 year olds was<p><pre><code> print(&quot;draw with the arrow keys&quot;); var cx=320; var cy=240; function move() { if (keyIsDown(38)) cy-=1; if (keyIsDown(40)) cy+=1; if (keyIsDown(37)) cx-=1; if (keyIsDown(39)) cx+=1; } function draw() { fillCircle(cx,cy,6); } run(move,draw); </code></pre> I think since then I changed keyIsDown to keyHeldDown [with keyWentDown] as a compliment.<p>That combined with<p><a href="https:&#x2F;&#x2F;fingswotidun.com&#x2F;code&#x2F;index.php&#x2F;Keycodes" rel="nofollow">https:&#x2F;&#x2F;fingswotidun.com&#x2F;code&#x2F;index.php&#x2F;Keycodes</a><p>That gives an etch a sketch program and enough information of how to convert it to WASD which seems to be a universal impulse amongst 9year olds.