VP #1 Is there a better way to return True or False for even-ness than:iseven% = (num% Shr 1)-((num%+1) Shr 1)In a context where num% may be MilliSecs()/1000 (to create flashing text, for instance)?
octothorpe #4 The mathematical solution (which would be slower than the bitwise solution given above) would use the MOD operator. function is_even(num%) if (num MOD 2 = 0) then return true else return false end function