xxxxxxxxxx
9
function setup() {
// Dieser Code wird EINMAL ausgeführt, wenn das Programm startet.
console.log("Das Programm startet...");
}
function draw() {
// Dieser Code wird JEDES MAL ausgeführt, wenn das Programmfenster neu gezeichnet wird.
console.log("... und läuft");
}