Assignment #6 and "Comments and Slashes"

Code

      /// Name: Jack Newsom
      /// Period: 5
      /// Program Name: CommentsAndSlashes
      /// Filename: CommentsAndSlashes.java
      /// Date Finished: 9/8/15
      //Two slashes signify a comment
      
      public class CommentsAndSlashes {
          public static void main( String[] args ) {
              
              //this is a comment
              //this is allso a comment
              
              System.out.println("This is java"); //this comment is ignored
              
              //this is a disabled line of code
              //System.out.println("this wont run");
              
              System.out.println("this will run");
          }
      }  
    

Picture of the output

Assignment 6