Assignment #4

Code

    ///Name: Cody Swain
    ///Period: 6
    ///Project Name: HelloWorld
    ///File Name: HelloWorld.java
    ///Date: 9/3/15
    
    class HelloWorld {
    
        public static void main(String[] args) {
        
            //prints out "Hello World" to the console
            System.out.println("Hello World!!");
        }
    }
    

Picture of the output

Assignment 1