Assignment 6: Comments and Slashes

Code

    /// Name: Ryan McAteer
    /// Period: 5
    /// Program Name: Assignment 6
    /// File Name: Assignment6.java
    /// Date Finished: 9/8/15

    class Assignment6 {
    
        //Ryan McAteer Tuesday September 8th, 2015
        //I was correct in my guess in the previous assignment. This line will not be seen in the code.
    
        public static void main(String[] args) {
            //This will not be seen either
            System.out.println("But this will be seen because it is in a print statement.");
        }
    }
    

Picture of the output

Assignment 1