Tagged Questions
1
vote
3answers
325 views
haskell word searching program development
hello I am making some word searching program
for example
when "text.txt" file contains "foo foos foor fo.. foo fool"
and search "foo"
then only number 2 printed
and search again and again
but ...
16
votes
1answer
817 views
Infinite loop in haskell? (newbie)
I'm just learning Haskell. I thought this would produce a factorial function...
(within ghci)
Prelude> let ft 0 = 1
Prelude> let ft n = n * ft (n - 1)
Prelude> ft 5
(hangs indefinitely, ...
