/**
* CS312 Assignment 0.
*
* Replace <name>with your name, stating on your honor you completed this
* assignment on your own and that you didn't share your code with other
* students.
* 
* On my honor, Abdon Morales, this programming assignment is my own work and I have
* not shared my solution with any other student in the class.
*
* A program to print out Hello World.
*
*  email address: abdonm@cs.utexas.edu
*  UTEID: am226923
*  Number of slip days I am using on this assignment:
*/


public class HelloWorld {

    public static void main(String[] args) {
        System.out.println("Hello World!");
    }
}
