1
如何輸出文件中的字符到SML/NJ中的標準輸入?這是我迄今爲止,但我目前卡住,因爲我得到的錯誤從編譯器扔回給我。輸出文件到標準輸入
代碼:
fun outputFile infile =
let
val ins = TextIO.openIn infile;
fun helper copt =
case copt of
NONE = TextIO.closeIn ins;
| SOME(c) = TextIO.output1(stdIn,c);
helper(TextIO.input1 ins));
in
helper ins
end;
任何想法,以我要去哪裏錯了嗎?