Assignemnt #6 and CommentsAndSlashes

Code

    /// Name: Drew Boxold
    /// Period: 5
    /// Program Name: 6
    /// File Name: CommentsAndSlashes.java
    /// Date Finished: 9/8/2015
    
    public class CommentsAndSlashes
    {
      public static void main( String[] args )
      {
        // This is a comment.
        // Hello.
        
        System.out.println( "I has many codes." ); //ignore this stuff.
        
        // Disable this stuff
        
        System.out.println( "This will run." );
      }
    }
    
    

Picture of the output

Assignment 6