<script src="http://spelprogrammering.nu/simple.js"> function start() { ball = {x: 0, y: 0}; } function update() { clearScreen(); circle(ball.x, ball.y, 50, "red"); ball.x++; ball.y++; } </script>