find-source-file
builtin-function
(find-source-file name)
Returns the full path name corresponding to the string name. Searches in the
current directory and in the directories of the load path (see also $load-path,
set-load-path). If name has an extension, then name is used as given.
If name has no extension, then the following set of filenames is used:
NAME.k
NAME.kiezel
NAME/NAME.k
NAME/NAME.kiezel
NAME/main.k
NAME/main.kiezel
make-html > (find-source-file "system")
it: "/home/jan/projects/kiezellisp/public/lib/system.k"
make-html > (find-source-file :ftp)
it: "/home/jan/projects/kiezellisp/public/lib/ftp.k"
make-html > $load-path
it: ("/home/jan/projects/kiezellisp/private/lib"
"/home/jan/projects/kiezellisp/private/app"
"/home/jan/projects/kiezellisp/public/lib"
"/home/jan/projects/kiezellisp/public/app")