Grasshopper Technologies
7228 W. Hood Ave.
Chicago, IL 60631
t: 847 722-4455
info@grasshoppertech.com

Valid XHTML 1.0 Strict

Java Fun! - Chapter 1 - Poem

public class JavaFun01aPoem {
    public static void main(String[] args) {
        System.out.println("Roses are Red");
        System.out.println("Violets are Blue");
        System.out.println("You can learn to write programs");
        System.out.println("For most things you do");
    }
}

run:
Roses are Red
Violets are Blue
You can learn to write programs
For most things you do
BUILD SUCCESSFUL (total time: 0 seconds)