OK, I'm not expecting to ever need the use values this large with SKIP, but I'm a little puzzled by the behavior.
>> skip [1 2 3] 99999999999999999999 == [] >> skip [1 2 3] 999999999999999999999 == [1 2 3] >> skip [1 2 3] -99999999999999999 == [1 2 3] >> skip [1 2 3] -999999999999999999 == [] >> skip [1 2 3] -9999999999999999999 == [] >> skip [1 2 3] -99999999999999999999 == [] >> skip [1 2 3] -999999999999999999999 == [1 2 3] Any thoughts? --Gregg -- To unsubscribe from this list, please send an email to [EMAIL PROTECTED] with "unsubscribe" in the subject, without the quotes.
