AtlatestRepositorysigil-r7rs

sigil-r7rs / tree / src / schemeread.sgl

1;;; (scheme read) - R7RS Read Library
2;;;
3;;; Parse S-expressions from input ports.
4;;;
5;;; See: [R7RS Small](https://small.r7rs.org/) §6.13.2
6
7(define-library (scheme read)
8 (import (sigil io))
9 (export read))
11;;; read is provided by (sigil io).