package Tutorial1;
import java.io.*;

// CSC108 Tutorial 1 Example
// Name:  Iam Me         Student ID: 555555555
// Tutor: Andria Hunter  Prof: Ken Jackson
//
// Program Description: Simple demo of a Java program that
//     prints "Hello World!"

class HelloWorld {

   // Main method where program execution starts.

   public static void main (String[] args) throws IOException {

      System.out.println ("Hello World!");
   }
}

