
24 Apr
2004
24 Apr
'04
8:45 a.m.
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