Assignemnt #6 Comments and Slashes

Code

     ///Name: Prooz Fereydouni
    ///Period: 7
    ///Project Name: Comments and Slashes
    ///File Name: T.java
    ///Date: 9/11/2015
    
    // Name: Pirooz Fereydouni Date: 9/11/2015
    // Double slashes are used for a commentary statement that does not affect the program
    public class T
    {
      public static void main( String[] args )
      {
        System.out.println( "This is a java program. " );
      }
    }
    

Picture of the output

assignment6