Assignment 6 and Comments and Slashes

Code

      /// Name: Matthew Hughs
       /// Period: 5
       /// Program Name: CommentsAndSlashes
       /// File Name: CommentsAndSlashes.java
       /// Date Finished: 9/4/2015

public class CommentsAndSlashes
{
        public static void main( String[] args )
        {
                System.out.println( "I could have code like this." );
                System.out.println( "This will run." );
                
        }
}
    

Picture of the output

CommentsAndSlashes