// Allison Obourn
// CS& 141, Autumn 2021
// Lecture 1

// This program prints out a hello world message and a couple
// other lines

public class Hello {
    public static void main(String[] args) {
        System.out.println("Hello, world!");
        System.out.println();
        testMethod();
        System.out.println("This program produces");
        System.out.println("four lines of output");
        testMethod();
        testMethod();
        testMethod();
        testMethod();
    }
    
    public static void testMethod() {
        System.out.println("inside of method");
    }
}
