My first LISP snippet!

| -Uncategorized

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)

You can comment with Disqus or you can e-mail me at sacha@sachachua.com.