# Test ```skulpt_runner {"options":"editor console buttons canvas load-save processing canvas", "height": "300", "display" : "fullscreen", "autosave": "true"} x = 0 y = 0 def setup(): createCanvas(400, 400) def draw(): background(255,255,255) global x global y for i in range(1,10): line(i*40,0,i*40,400) for i in range(1,10): line(0,i*40,400,i*40) fill(100,100,100) rect(x,y,40,40) def keyTyped(): global x global y print(keyCode) if keyCode == 68: x = x + 40 if keyCode == 65: x = x - 40 if keyCode == 83: y = y + 40 if keyCode == 87: y = y - 40 ```