HaskellのI/O ファイルの操作 ファイルを開いて閉じる System.IOモジュール、openFile関数
入門Haskellプログラミング (Will Kurt(著)、株式会社クイープ(監修、翻訳)、翔泳社)のUNIT4(HaskellのI/O)、LESSON24(ファイルの操作)、24.1(ファイルを開いて閉じる)、クイックチェック 24-1の解答を求めてみる。
コード
import System.IO
main = do
f <- openFile "hello.txt" ReadMode
print f
入出力結果(Terminal, Zsh)
% runghc sample01.hs
{handle: hello.txt}
%