Modify a text file: $/hello.java
$/hello.java
void setup() { // Setup screen size, etc. // println("hello web!"); size(200, 200); } void draw() { // Draw sun & sky, display hello messages. // background(100, 150, 200); // sky stroke(255, 0, 0); // red stroke fill(250, 250, 100); // yellow fill ellipse(50, 50, 25, 25); // sun // Now, green text on screen. fill(0, 255, 0); text( "Hello, world!", width/2, height/2 ); }