On 27/01/2014, at 10:56 PM, RF wrote:

> I like inclusive, exclusive.

What about descending loops ..

Also there are at least two other constructions we should have

for i in 0 to 10 unordered ..

for i in 0 to 10 parallel ..

Unordered means do all of them in any order, one at a time.
parallel means you can do all of them simultaneously.
I.e. synchronous, asynchronous.

Parallel clearly requires special handling of shared values,
for example

        x = x + 1

probably can't be allowed, but

        atomic_increment x;

should be OK.

--
john skaller
skal...@users.sourceforge.net
http://felix-lang.org




------------------------------------------------------------------------------
CenturyLink Cloud: The Leader in Enterprise Cloud Services.
Learn Why More Businesses Are Choosing CenturyLink Cloud For
Critical Workloads, Development Environments & Everything In Between.
Get a Quote or Start a Free Trial Today. 
http://pubads.g.doubleclick.net/gampad/clk?id=119420431&iu=/4140/ostg.clktrk
_______________________________________________
Felix-language mailing list
Felix-language@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/felix-language

Reply via email to