Dar Scott wrote
> on mouseUp
>    put "1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16" into myVar
>    repeat 1000
>       add zero to any item of myVar
>    end repeat
>    put  myVar
> end mouseUp

Your example is really convincing, nothing to say more.

This introduces, still funny, some variation:
on mouseUp
  put "1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16" into myVar
  repeat 1000
    add 0 to item (any item of myVar) of myVar
  end repeat
  put  myVar into fld 1
end mouseUp

And this, not this much funny, creates a CRASH (showing "inf"):
on mouseUp
  put "1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16" into myVar
  repeat 1000
    add 1 to item (any item of myVar) of myVar
  end repeat
  put  myVar into fld 1
end mouseUp




--
View this message in context: 
http://runtime-revolution.278305.n4.nabble.com/Cubist-s-first-bug-report-tp4705407p4705416.html
Sent from the Revolution - User mailing list archive at Nabble.com.

_______________________________________________
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode

Reply via email to