> But
> 
>     w: 100 loop w[w: w - random 2 / 3]
> 
> is 34 bytes...

doesn't really compute correctly, it gives a constant result.

   >> w: 100 loop w[w: w - random 2 / 3]
   == 33.3333333333332
   >> w: 100 loop w[w: w - random 2 / 3]
   == 33.3333333333332
   >> w: 100 loop w[w: w - random 2 / 3]
   == 33.3333333333332

if that counted we could use:

   w: random 2 / 3 ?? w

20 bytes  ;-)


-- 
To unsubscribe from this list, please send an email to
[EMAIL PROTECTED] with "unsubscribe" in the 
subject, without the quotes.

Reply via email to