The Skinny On...
Use
No programming system is particularly good without being able to
break up a program into units. The system.use function
allows you to do just that with the RSP.
If you have a file called test.js in your js directory
include it by using system.use in the following way:
system.use("test");
If you want to break your code down further, into additional chunks,
you can also navigate directories. If you had a file called
lib/http.js in your js directory, you can include it by
calling:
system.use("lib.http");
