
Hello, Very beginner here. I downloaded the Haskore package with cabal: cabal install haskore but when I import Haskore in my source, I get: Could not find module `Haskore' I've got to be missing something. Thanks, Tyler

On Fri, Oct 7, 2011 at 4:38 PM, Tyler Hayes
Hello,
Very beginner here. I downloaded the Haskore package with cabal:
cabal install haskore
but when I import Haskore in my source, I get:
Could not find module `Haskore'
I've got to be missing something.
Thanks, Tyler
Hello! I don't know much about Haskore, but the package doesn't contain a module titled "Haskore". This page has a listing of a ll of the public modules in the package: http://hackage.haskell.org/package/haskore There is a package called 'haskore-vintage', which attempts to preserve an older version of the library: http://hackage.haskell.org/package/haskore-vintage Perhaps that's what you're looking for? Antoine
_______________________________________________ Beginners mailing list Beginners@haskell.org http://www.haskell.org/mailman/listinfo/beginners

There is a package called 'haskore-vintage', which attempts to preserve an older version of the library:
http://hackage.haskell.org/package/haskore-vintage
Perhaps that's what you're looking for?
Yep, that was it, thanks a million! - Tyler
Antoine
_______________________________________________ Beginners mailing list Beginners@haskell.org http://www.haskell.org/mailman/listinfo/beginners

On Friday 07 October 2011, 23:38:42, Tyler Hayes wrote:
Hello,
Very beginner here. I downloaded the Haskore package with cabal:
cabal install haskore
but when I import Haskore in my source, I get:
Could not find module `Haskore'
There's no module Haskore in the haskore package on hackage, it has lots of modules like Haskore.Basic.Duration but no wrapper module that collects all. It's gone very far from Paul Hudak's original Haskore. If you're learning from a book or paper describing Hudak's Haskore, you should download haskore-vintage. $ cabal install haskore-vintage
I've got to be missing something.
Thanks, Tyler

I feel someone should also point out the cabal info command.
cabal info haskore
And boy haskore sure isn't shy about exporting modules
On Fri, Oct 7, 2011 at 6:01 PM, Daniel Fischer
On Friday 07 October 2011, 23:38:42, Tyler Hayes wrote:
Hello,
Very beginner here. I downloaded the Haskore package with cabal:
cabal install haskore
but when I import Haskore in my source, I get:
Could not find module `Haskore'
There's no module Haskore in the haskore package on hackage, it has lots of modules like
Haskore.Basic.Duration
but no wrapper module that collects all.
It's gone very far from Paul Hudak's original Haskore.
If you're learning from a book or paper describing Hudak's Haskore, you should download haskore-vintage.
$ cabal install haskore-vintage
I've got to be missing something.
Thanks, Tyler
_______________________________________________ Beginners mailing list Beginners@haskell.org http://www.haskell.org/mailman/listinfo/beginners

On Saturday 08 October 2011, 00:12:57, David McBride wrote:
And boy haskore sure isn't shy about exporting modules
Well, it has to export a lot of modules since (almost) all types are called T and classes C. That means the information has to be encoded in the module name, hence one module per type/class. Just be grateful that the functions aren't all called f ;)

If you are a beginner, you might want to start with the package "haskore-vintage" rather than Haskore. Paul Hudak has written extensive tutorials for the original Haskore (which is now Haskore-Vintage). Short - 30 pages http://haskell.cs.yale.edu/?post_type=publication&p=258 Long - 100 and odd pages, here http://code.haskell.org/haskore/revised/core/docs/Tutorial.pdf
participants (5)
-
Antoine Latter
-
Daniel Fischer
-
David McBride
-
Stephen Tetley
-
Tyler Hayes