Hello!<br>
<br>
When I work on a program which is going to be named LongProgramName,<br>
I usually put the Main module in file LongProgramName.hs. It would be nice<br>
if I could build it with --make like this:<br>
<br>
$ ghc --make LongProgramName<br>
<br>
instead of<br>
<br>
$ ghc --make LongProgramName -o LongProgramName<br>
<br>
Does anyone rely on the first one producing a.out?<br>
<br>
Because of this long syntax and comand-line completion I've even once<br>
lost the source code. I forgot to remove the .hs at the end of line:<br>
<br>
$ ghc --make Prog -o Prog.hs<br>
<br>
Best regards<br>
Tomasz<br>