Naming of Haskell Modules

haskell

Solution

No, module names may not begin with a digit. You could name it something like `P9`, though.

Problem

I am doing the 99 Haskell problems: http://www.haskell.org/haskellwiki/H-99:_Ninety-Nine_Haskell_Problems I can name modules something like "Nine.hs" and at the top of that file have ``` module Nine where ... ``` but in the interest of brevity I would like to write "9.hs" and have ``` module 9 where ... ``` unfortunately this gives me a parse error. Is there a way to do it?

Original source