document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. //NamePrinter.java  MrG 2011.0914
  2. //purpose: helloworld like exercise boxing your name using 1/2 ascii graphics!
  3. //required file: NamePrinter.java
  4. //translator phase: javac NamePrinter.java
  5. //interpreter phase: java NamePrinter
  6. public class NamePrinter
  7. {
  8.     public static void main(String[] args)
  9.     {
  10.         System.out.println("+--------+");
  11.         System.out.println("| Garcia |");
  12.         System.out.println("+--------+");
  13.     }
  14. }
');