This document discusses the Gauche programming language and its uses. It mentions that Gauche is a Scheme implementation that can be used to process XML and convert it to LaTeX. It also references libraries and files related to processing XML, converting to LaTeX, and version control in Gauche.
23. xml-trivial.scm
XML
(define (read-xml)
(define (in-tag c tag)
(cond ((eof-object? c)
(error quot;EOF while tagquot; tag))
((char=? # c)
(in-escaped (read-char)
(string+char tag c)))
...
23
24. xml-trivial.scm
XML
(define (read-xml)
(define (in-tag c tag)
(cond ((eof-object? c)
(error quot;EOF while tagquot; tag))
((char=? # c)
(in-escaped (read-char)
(string+char tag c)))
...
24