HaskellのI/O ファイル操作 cpプログラムの実装、readFile関数、writeFile関数
入門Haskellプログラミング (Will Kurt(著)、株式会社クイープ(監修、翻訳)、翔泳社)のUNIT4(HaskellのI/O)、LESSON 24(ファイル操作)、24.6(練習問題)Q24-1の解答を求めてみる。
コード
lesson/app/Main.hs
module Main where
import Lib ()
import System.Environment (getArgs)
main :: IO ()
main = do
args <- getArgs
let source = head args
let target = args !! 1
text <- readFile source
writeFile target text
入出力結果(Terminal, Zsh)
% cat hello.txt
Hello world!
Good bye world!
% stack exec lesson-exe hello.txt output.txt
% cat output.txt
Hello world!
Good bye world!
%