建立一個輸入埠

可以通過多種方式建立輸入埠,但通常該方法以 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"))