document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. /*
  2.  * To change this template, choose Tools | Templates
  3.  * and open the template in the editor.
  4.  */
  5. package helloworld;
  6.  
  7. /**
  8.  *
  9.  * @author gacanepa
  10.  */
  11. public class HelloWorld {
  12.  
  13.     /**
  14.      * @param args the command line arguments
  15.      */
  16.     public static void main(String[] args) {
  17.         // TODO code application logic here
  18.         String miNombre="Mi nombre es Gabriel, ";
  19.         String miApellido="y mi apellido es Cánepa";
  20.         System.out.println(miNombre+miApellido);
  21.     }
  22. }
');