Skip to content

Instantly share code, notes, and snippets.

(use posix)
(define (make-serialport file)
(let ((fileno
(file-open
file
(bitwise-ior open/rdwr open/noctty open/nonblock))))
; Enable blocking reads on the FD
(let ((current-fl (file-control fileno fcntl/getfl 0)))
@DerGuteMoritz
DerGuteMoritz / dolor.xml
Created February 19, 2012 18:43
Example code for ssax
<?xml version="1.0"?>
<!-- <!DOCTYPE poem SYSTEM "dolor.dtd"> -->
<poem>
<title>Dolor</title>
<!-- Here's a simple example of an XML document -->
<author>
<last>Roethke</last>
<first>Theodore</first>