我工作的一些現有Python代碼轉換爲CLISP只是作爲一個練習...需要幫忙CLISP讀取標準輸入到一個列表
程序讀取號的列表,並創建平均值,最小值,最大值和標準偏差。我有基於文件的功能工作:
(defun get-file (filename)
(with-open-file (stream filename)
(loop for line = (read-line stream nil)
while line
collect (parse-float line))))
這工作時,我把它作爲
(get-file "/tmp/my.filename")
...但我希望程序讀取標準輸入,我已經試過各種 東西沒有運氣。
有什麼建議嗎?