This website works better with JavaScript
Startsida
Utforska
Hjälp
Logga in
CNI
/
HaskellCourse
Bevaka
3
Stjärnmärk
0
Fork
0
Filer
Ärenden
0
Pull-förfrågningar
0
Wiki
Gren:
master
Grenar
Taggar
cm-review
master
mine-sweeper-lab
rsa-lab
HaskellCourse
/
cm
/
io_length.hs
io_length.hs
104 B
Permalänk
Historik
Rå
1
2
3
4
5
6
7
8
-- Slide 57
ioLength::IO Int
ioLength = do
x <- getLine
return (length x)
main = ioLength >>= print