write-byte.scm 252 B

12345678910111213
  1. ; Part of Scheme 48 1.9. See file COPYING for notices and license.
  2. ; Authors: Mike Sperber
  3. ;; It's the best shot, given R5RS.
  4. (define (set-port-crlf?! port val)
  5. (values))
  6. (define (write-byte byte port)
  7. (write-char (ascii->char byte) port))