Am Samstag, 24. April 2004 10:40 schrieb Wolfgang Jeltsch:
> [...]

> Use
>     import System.Posix.Temp
>     test = mkstemp
> instead.

By the way, you can also use
    import System.Posix.Temp
    test = System.Posix.Temp.mkstemp
or
    import System.Posix.Temp as Temp
    mkstemp = Temp.mkstemp
or
    import System.Posix.Temp as PosixTemp
    mkstemp = PosixTemp.mkstemp.
So you *can* qualify function names but the module name you qualify the 
function name with must be a name mentioned after "import" or after "as", 
respectively.

> [...]

Wolfgang

_______________________________________________
Haskell-Cafe mailing list
[EMAIL PROTECTED]
http://www.haskell.org/mailman/listinfo/haskell-cafe

Reply via email to