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
402 views
In GHCi, why does the kind of the function arrow `:kind (->)` include question marks `(->) :: ?? -> ? -> *`? [duplicate]
Possible Duplicate:
Haskell Weird Kinds: Kind of (->) is ?? -> ? -> *
In GHCi (version 7.0.2), if I ask for the kind of the function type, the result has question marks:
...
