Projektübersicht

Auch Processing ist möglich:

```skulpt_runner
{"options":"editor console buttons canvas processing", "height": "300"}
def setup():
    createCanvas(400, 400)

def draw():
    ellipse(mouseX(), mouseY(), 10, 10)
```

–>

{"options":"editor console buttons canvas processing", "height": "300"}
def setup():
    createCanvas(400, 400)

def draw():
    ellipse(mouseX(), mouseY(), 10, 10)