Hey Greg,
try (asdf:load-system 'clim-examples)
systems are designated by symbols, not by pathnames or file names. Also, if you are interested in downloading all dependencies automatically, use Quicklisp (check out quicklisp.org), then it would be just
(ql:quickload 'clim-examples)
Best regards, Daniel
On 12/16/16 Dec 16 -2:38 PM, Daniel Kochmański wrote:
Hey Greg,
try (asdf:load-system 'clim-examples)
systems are designated by symbols, not by pathnames or file names. Also, if you are interested in downloading all dependencies automatically, use Quicklisp (check out quicklisp.org), then it would be just
(ql:quickload 'clim-examples)
Best regards, Daniel
Actually, for the record, systems are really designated by lower-cased strings, so "clim-examples" is right. But LOAD-SYSTEM will coerce symbols into strings appropriately.