Andrew & Steve,

I haven't run a lot of the code yet.  Just did a consistency cleanup on what 
was there.

If you've got a better solution.  Go ahead.   

It would be worth including some of the comments about easier without the break 
etc. Possibly even having the second snippet of code.

I noticed several that could use work/review:

http://rosettacode.org/wiki/Hello_world/Graphical   (didn't Unicon have some 
improvements)
http://rosettacode.org/wiki/Sockets  (on my list but needed new binaries)
http://rosettacode.org/wiki/Roots_of_unity  
http://rosettacode.org/wiki/Loops/Infinite  (let me count the ways :)

The language comparison table needs work too.  I've started looking at it.

David




________________________________
From: Steve Wampler <[email protected]>
To: [email protected]
Sent: Wed, April 7, 2010 11:35:22 PM
Subject: Re: [Unicon-group] Unicon talk pages on Rosetta Code

Steve Wampler wrote:
> This looks like fun.

After actually visiting the RC site, how about this solution?:

procedure main()
     while (10 ~= write(?20 - 1), write(?20 - 1))
end

which shows the power of GDE without introducing the
repeated evaluation operation.  Or just:

procedure main()
     while (10 ~= write(?20 - 1)) & write(?20 - 1)
end

[I personally prefer the first, but it does introduce
another 'new' operation.]


-- 
Steve Wampler     {[email protected]}
The gods that smiled upon your birth are laughing now. -- fortune cookie

------------------------------------------------------------------------------
Download IntelĀ® Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
_______________________________________________
Unicon-group mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/unicon-group
------------------------------------------------------------------------------
Download Intel&#174; Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
_______________________________________________
Unicon-group mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/unicon-group

Reply via email to