Assignemnt #6 Comments And Slashes
Code
///Name: Caelan Dorstad
///Period: 6
///Program Name: Comments And Slashes
///File Name: CommentsAndSlashes.java
///Date Finished: 9/15/15
public class CommentsAndSlashes
{
public static void main( String[] args )
{
//Comments are lines that do not effect the code
//They can be used to enterprit code lines
System.out.println( "This line will be run" ); //And a comment could be after it
//system.out.println( "This line will not be run" )
}
}
Picture of the output