;;; (scheme read) - R7RS Read Library
;;;
;;; Parse S-expressions from input ports.
;;; See: [R7RS Small](https://small.r7rs.org/) §6.13.2
(define-library (scheme read)
(import (sigil io))
(export read))
;;; read is provided by (sigil io).