Advertisement
joseleonweb

Untitled

Jul 13th, 2019
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.28 KB | None | 0 0
  1. /**
  2.  * Con este programa mostramos un mensaje por pantalla
  3.  * @author Jose León
  4.  * @version 1.0
  5. */
  6. public class HolaMundo{
  7.     final static String MESSAGE = "Hola Mateo y Lorena!";
  8.     public static void main(String[] argumentos) {
  9.         System.out.println(MESSAGE);
  10.     }
  11.  }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement