# Multiple REPLs ```skulpt_runner {"options":"canvas processing autostart display_sketch buttons", "height": "300", "display": "sketch"} def setup(): createCanvas(400, 400) def draw(): ellipse(mouseX(), mouseY(), 10, 10) ``` ```skulpt_runner {"options":"editor console buttons canvas processing", "height": "300"} fill(100,200,200) ellipse(50,50,80,80) ``` ```skulpt_runner {"options":"canvas processing autostart display_sketch buttons", "height": "300", "display": "sketch"} def setup(): createCanvas(400, 400) def draw(): ellipse(mouseX(), mouseY(), 10, 10) ```