This commit is contained in:
gauthiier 2023-01-09 10:52:12 +01:00
parent bf837f88af
commit d747a13964

View File

@ -7,3 +7,18 @@
<p align="center">
<img src="https://git.le-club-des-sans-sujets.org/gauthiier/Revisiting-Concepts-Notations-Software-Art/raw/branch/main/img/interpreter.svg" height="150"/>
</p>
## 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 ↓
}
'''