Assignemnt #2

Code

    /// Name: Sam Wilson
    /// Period: 6
    /// Program Name: First Program
    /// File Name: FirstProg.java
    /// Date Finished: 9/2/2015
      public class CommentsandSlashes
        {
    public static void main( String[] args)
      {
    // a comments can be placed here for small self notes
        
        System.out.println("I could have a code like this."); //irrelevent
        
        //use a comment to mark a code string unusable
        
        System.out.println("This will run."); 
            //System.out.println("This will run.") 
    }
}

    

Picture of the output

Assignment 3