Jatha: Documentation for non-standard functions

LOAD-FROM-JAR (filename &OPTIONAL jarfile)

LOAD-FROM-JAR will load a LISP file from either the jarfile (or classpath) containing Jatha, or from a specified jar file.

Examples

  (load-from-jar "myfunctions.lisp")     ;; uses getResource() on the current classpath
  (load-from-jar "foo/myfunctions.lisp" "mylisplibrary.jar")  ;; Uses JarFile to read the jar.

Notes


Author: Micheal Hewett