Run the following 'hello.java' application
(It is avaliable by
ftp
from ftp://lt.tucson.az.us/pub/java/Hello.java:
/* Hello world java program
* Louis Taber, PCC
* modified from K&R */
public class Hello
{
public static void main( String[] args)
{
System.out.println("Hello, world");
} // End main()
} // End class Hello
username@gort ~ $
$ ls
Hello.java
username@gort ~ $
javac Hello.java
username@gort ~ $
java Hello
Hello, world
username@gort ~ $
Change the program so it prints your name and the date. Turn in a printout of
your source code and your output.