type test broken
- Posted by "Kat" <gertie at visionsix.com> Jul 11, 2005
- 534 views
I am feeding a sequence to some code:
data = parse("AbCdEF",{"si",'c'}) global function parse(sequence s, object c) if sequence(c) then str = 0 -- this is executed end if if atom(c) then --code -- not executed else -- code -- not executed end if
So why won't the "if atom(c)... else" code execute? Kat