On Sat, Oct 31, 2009 at 7:54 AM, Daniel Fischer
<daniel.is.fischer@web.de> wrote:
Am Samstag 31 Oktober 2009 13:32:51 schrieb Michael Mossey:
> I want to have a hierarchy of modules for a local project. Not submitting
> it to Hackage yet. I just want to refer to my local modules as
>
> Basics.CSound
> Basics.Node
> Algo.Fux
>
> etc.
>
> how does one set this up?
Top directory: project.cabal, Setup.hs (module Main where main = defaultMain)
Subdirectry Basics:
File CSound.hs (module Basics.CSound (exports) where...)
File Node.hs (module Basics.Node (exports where...)
Subdirectory Algo:
File Fux.hs (module Algo.Fux (exports) where...)
cd Top directory
cabal install