/*
This program produces a
sample output in the command prompt window.
It is used in Appendix D to
verify that that the path and classpath
statements have been properly
set.
*/
public
class
Sample
{
public
static
void
main(String[] args)
{
System.out.println();
System.out.println("\tYou
have successfully compiled and run the Sample application.");
System.out.println();
}
}