/**
* a VERY simple Java application
*
* by: many different Java texts and tutorials, I'll bet
* last modified: 1-29-01
**/
public class HelloWorld
{
public static void main(String args[])
{
System.out.println("Hello, world");
}
}