fork download
  1. public class GoodFirstProgram
  2. {
  3.  
  4. public static void main( String[] args )
  5. {
  6.  
  7. System.out.printIn( "Hello World!" );
  8. System.out.printIn( "Hello Again!" );
  9. System.out.printIn( "I like typing this." );
  10. System.out.PrintIn( "This is fun." );
  11. System.out.printIn( "Yay! Printing." );
  12. System.out.printIn( "I'd much rather you 'not'." );
  13. System.out.printIn( "I \"said\" do not touch this." );
  14.  
  15. }
  16.  
  17. }
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
Main.java:1: error: class GoodFirstProgram is public, should be declared in a file named GoodFirstProgram.java
public class GoodFirstProgram
       ^
Main.java:7: error: cannot find symbol
				System.out.printIn( "Hello World!" );
				          ^
  symbol:   method printIn(String)
  location: variable out of type PrintStream
Main.java:8: error: cannot find symbol
				System.out.printIn( "Hello Again!" );
				          ^
  symbol:   method printIn(String)
  location: variable out of type PrintStream
Main.java:9: error: cannot find symbol
				System.out.printIn( "I like typing this." );
				          ^
  symbol:   method printIn(String)
  location: variable out of type PrintStream
Main.java:10: error: cannot find symbol
				System.out.PrintIn( "This is fun." );
				          ^
  symbol:   method PrintIn(String)
  location: variable out of type PrintStream
Main.java:11: error: cannot find symbol
				System.out.printIn( "Yay! Printing." );
				          ^
  symbol:   method printIn(String)
  location: variable out of type PrintStream
Main.java:12: error: cannot find symbol
				System.out.printIn( "I'd much rather you 'not'." );
				          ^
  symbol:   method printIn(String)
  location: variable out of type PrintStream
Main.java:13: error: cannot find symbol
				System.out.printIn( "I \"said\" do not touch this." );
				          ^
  symbol:   method printIn(String)
  location: variable out of type PrintStream
8 errors
stdout
Standard output is empty