From d747a1396464f591c14bb7d833af5857736a147f Mon Sep 17 00:00:00 2001 From: gauthiier Date: Mon, 9 Jan 2023 10:52:12 +0100 Subject: [PATCH] 1.3 --- 1.Basics.md | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/1.Basics.md b/1.Basics.md index 3bfadb3..591dc68 100644 --- a/1.Basics.md +++ b/1.Basics.md @@ -6,4 +6,19 @@

-

\ No newline at end of file +

+ +## 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 ↓ +} +''' \ No newline at end of file