IK
Size: a a a
IK
S
AR
S
AR
S
AR
module Test where
import System.IO
foo :: IO ()
foo = do
str <- openFile "dataset.txt" ReadMode >>= hGetContents
return ()
JS
Prelude> writeFile "/tmp/a.txt" "hello"
Prelude> text <- readFile "/tmp/a.txt"
Prelude> :t text
text :: String
Prelude> text
"hello"
S
A
ХГ
ХГ
АК
JS
АК
JS
АК
JS