Updates:
Status: Fixed
Comment #1 on issue 170 by
krustev....@gmail.com: repeat-until has a wrong
looping condition
http://code.google.com/p/toped/issues/detail?id=170
Fixed in r2439
For compatibility with the old behaviour - a pragma is introduced in the
interpreter:
#pragma repeatloop default
to get the traditional behaviour - i.e. as in Pascal, Python etc. (as
introduced by this fix). This is now the default behaviour - so it doesn't
need to be used for a new code
#pragma repeatloop buggy
to revert the exit condition (i.e. to make it work as before this fix) -
i.e. an old code will need this pragma to work as before