Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
5
Task/File-size/Haskell/file-size-1.hs
Normal file
5
Task/File-size/Haskell/file-size-1.hs
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
import System.IO
|
||||
|
||||
printFileSize filename = withFile filename ReadMode hFileSize >>= print
|
||||
|
||||
main = mapM_ printFileSize ["input.txt", "/input.txt"]
|
||||
6
Task/File-size/Haskell/file-size-2.hs
Normal file
6
Task/File-size/Haskell/file-size-2.hs
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
import System.Posix.File
|
||||
|
||||
printFileSize filename = do stat <- getFileStatus filename
|
||||
print (fileSize stat)
|
||||
|
||||
main = mapM_ printFileSize ["input.txt", "/input.txt"]
|
||||
Loading…
Add table
Add a link
Reference in a new issue