Assignment #6 and CommentsAndSlashes
Code
/// Name: Brendan Baird
/// Period: 6
/// Program Name: Comments and Slashes
/// File Name: CommentsAndSlashes.java
/// Date Finished: 9/9/2015
// Brendan Baird, 9/9/2015
// These are like scratch marks that tell the computer to not mark this
public class CommentsAndSlashes{
public static void main( String[]args ){
//This is a comment
System.out.println("I transcend commentary!"); //comments can go after code!
//System.out.println("I shouldn't be on the screen.");
System.out.println("This shall run.");
}
}
Picture of the output