# Basics 101

autopilot creativity

## Sketch: 0. Hello World '''javascript // Hello world! // This is comment function setup() { createCanvas(400, 400); } function draw() { background(220); print("Hello World"); // see the console below ↓ } '''