Project
  1. Main
  2. +
Editor Theme:
x
11
 
1
function setup() {
2
  print("hello world");
3
}
4
5
function draw() {
6
  background(40,40,50);
7
  fill(150,200,30);
8
  stroke(200,30,150);
9
  strokeWidth(10);
10
  rect(20,20,100,100);
11
}
Execute Save
Export Clear Help
function setup() { print("hello world"); } function draw() { background(40,40,50); fill(150,200,30); stroke(200,30,150); strokeWidth(10); rect(20,20,100,100); }