Re: [Haskell-cafe] RE: module names

2005-12-29 Thread Remi Turk
On Fri, Dec 16, 2005 at 07:55:50AM -0800, Scherrer, Chad wrote: From: S Koray Can [mailto:[EMAIL PROTECTED] Why not do this: name none of those modules Main.hs, and have an empty module Main.hs with only import MainDeJour and main = MainDeJour.main so you can just edit just that file.

RE: [Haskell-cafe] RE: module names

2005-12-29 Thread Scherrer, Chad
Yes, good point. I suppose there's really no need to re-declare main once it's been imported. Thanks! -Original Message- From: Remi Turk [mailto:[EMAIL PROTECTED] Sent: Thu 12/29/2005 4:34 PM To: Scherrer, Chad Cc: S Koray Can; haskell-cafe@haskell.org Subject: Re: [Haskell-cafe] RE

Re: [Haskell-cafe] Re: module names

2005-12-20 Thread Bulat Ziganshin
Hello S, Friday, December 16, 2005, 6:32:47 AM, you wrote: SKC Why not do this: name none of those modules Main.hs, and have an empty SKC module Main.hs with only import MainDeJour and main = SKC MainDeJour.main so you can just edit just that file. ghc has option -main-is which is just what