My first LISP snippet!
This parses my blog RDF and returns a sexp.
(require :xmls) (with-open-file (stream "../../notebook/wiki/blog.rdf" :direction :input) (xmls::parse stream))
Important things learned:
- with-open-file
- how to load packages (require :package)
- how to call functions (package::function)
I'm 