fork download
  1. class DebugOne4
  2. {
  3. public static void main(String[] args)
  4. {
  5. System.out.print("This output");
  6. System.out.println(" is on the same line as the last one.");
  7. System.out.println("But this is on a new one.");
  8. }
  9. }
Success #stdin #stdout 0.1s 52628KB
stdin
Standard input is empty
stdout
This output is on the same line as the last one.
But this is on a new one.