[clean-list] Re: Newbie here...

Peter Achten peter88@cs.kun.nl
Fri, 24 Aug 2001 16:27:19 +0200


At 15:56 24-8-01 +0200, Siegfried Gonzi wrote:
>Royi Eltink royi@eastsite.nl wrote:
>
>[..]
>
> > - What looks the famous "HelloWorld!" program like?
>
>module hello
>import StdEnv
>
>Start = "Hello world"

Actually, it can be one line shorter because you don't need to import 
StdEnv. So:

module hello

Start = "Hello world!"

is also OK ;-)

Cheers,
Peter