NEW: For a prettier blog interface, see the Wordpress version!
Tasks
Notes
1. 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)
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'd love to hear about any questions, comments, suggestions or links that you might have. Your comments will not be posted on this website immediately, but will be e-mailed to me first. You can use this form to get in touch with me, or e-mail me at sacha@sachachua.com .