/// Name: Drew Boxold /// Period: 5 /// Program Name: 6 /// File Name: CommentsAndSlashes.java /// Date Finished: 9/8/2015 public class CommentsAndSlashes { public static void main( String[] args ) { // This is a comment. // Hello. System.out.println( "I has many codes." ); //ignore this stuff. // Disable this stuff System.out.println( "This will run." ); } }