の書き方を、メインロードファイルを使用します。Haskellはここで私は、私はHaskellでそれをロードする、テキストファイルを持っている、とリストにそれを読んアドレス
import qualified System.Environment
main :: IO()
main = do
[path] <- System.Environment.getArgs
g <- readFile path
putStr g
しかし、私はアドレスを与える方法がわかりません。 (例:ファイルが/Users/Documents/Programming/test.txt
ある)
私はこのHaskellのファイルをロードした後:
:main [<arguments> ...] run the main function with the given arguments
例::help
の下
*Main> main -- How can I write the address?
ghciにロードする代わりにコンパイルして実行してください。 – immibis