sample1.txt 441 B

1234567891011121314151617181920
  1. // This was mis-detected as HSP and Perl because parsing of
  2. // keywords in those languages allowed adjacent dots
  3. window.requestAnimationFrame(function render() {
  4. var pos = state.pos;
  5. canvasEl.width = 500;
  6. canvasEl.height = 300;
  7. if (dpad.right) {
  8. pos.x += 3;
  9. } else if (dpad.left) {
  10. pos.x -= 3;
  11. }
  12. ctx.fillStyle = '#AF8452';
  13. ctx.fillRect(pos.x + 5, pos.y - 10, 10, 10);
  14. window.requestAnimationFrame(render);
  15. });