I put some functions in a file. Where on my PC should I save this file so that I can easily load my functions?
I am using the Haskell Platform on a Windows 64-bit computer.
|
|
I usually put my modules in the same directory tree, and start up
|
|||||||||||||
|
|
If you want your modules to be accessible from a few different projects, I'd recommend to create a cabal package for them and install it using If you want your modules to be accessible from a single project - the usual practice of organizing your sources in a hierarchical folder tree applies to Haskell as well. Let me show an example:
Here are the documentation: http://haskell.org/ghc/docs/latest/html/users_guide/separate-compilation.html http://haskell.org/ghc/docs/latest/html/users_guide/packages.html |
||||
|