This is what the original listings looks like:
public class Hello { public static void main(String args[]) { System.out.println("Hello, world"); } }
And here's the result after the conversion:
001 public class Hello |
002 { |
003 public static void main(String args[]) |
004 { |
005 System.out.println("Hello, world"); |
006 } |
007 } |
(C) 1998, Guido Krueger, www.gkrueger.com