创建一个输入端口

可以通过多种方式创建输入端口,但通常该方法以 open-input- 开头。

字符串端口

你可以使用 open-input-string 将字符串用作端口。它将创建一个能够从字符串中读取的端口。

(define p
  (open-input-string "(a . (b . (c . ()))) 34"))

文件端口

你可以使用 open-input-file 打开文件进行阅读。

(define p
  (open-input-file "path/to/file"))