This section provides a tutorial example on how to use the '-sourcepath' option to specify the class path for the 'javac' tool to load any source files required during the compilation.
If you use a new type, and you don't have the class definition of that type, but you have its source
definition, you can use the "-sourcepath sourcepath" option to tell compiler to get that source definition.
Let's use the same source files, Echoer.java and EchoerTest.java, to test this: