I'm having a problem launching the java compilier, javac. I keep getting an error that says "CLASSPATH not set!" First let me identify where java is located on my linux box: /usr/lib/java/bin Referring to my book, java script in 21 days, (or more appropriately titled for Frank: Javascript in 21 YEARS!), the problem should be solved by adding this line to my .cshrc file set path=(~/java/bin/ $path) where /java/bin is really /usr/lib/java/bin on my system so it's really ...set path=(~/usr/lib/java/bin $path). Is this correct? So far this isn't working The book also says If a CLASSPATH is being set, entering the following at the command prompt echo $CLASSPATH but nothing is return save for a new prompt.

