Assignemnt #6 Comments and Slashes

Code

    Name: Iaroslav Titov
    Period: 7
    Project Name: CommentsAndSlashes
    File Name: CommentsAndSlashes.java
    Date: 9/9/2015
    
        // I am Iaroslav Titov and today is 9/9/2015
        // I was right because I knew it 
    public class CommentsAndSlashes
    {
      public static void main( String[] args )
      {
          // Comments
          System.out.println( "I could have code like this." ); // I don't like comments
          // Never use them in programming
          // That's why dad calls my code crappy
         
          // System.out.println("This won't run.");

          System.out.println( "This will run." );
      }
    }
    

Picture of the output

Assignment 3