---- Josef Wolf <j...@raven.inka.de> wrote: > Hello, > > I am trying to write a (simple) function to convert s-expressions to XML.
Guile 1.9/2.x has sxml modules. So (use-modules (sxml simple)) (define (sexp->xml s) (sxml->xml s)) Ought to get you pretty close. (untested) -Dale