write-byte.scm 240 B

1234567891011
  1. ; Copyright (c) 1993-2007 by Richard Kelsey and Jonathan Rees. See file COPYING.
  2. ;; It's the best shot, given R5RS.
  3. (define (set-port-crlf?! port val)
  4. (values))
  5. (define (write-byte byte port)
  6. (write-char (ascii->char byte) port))