Record quirk - or bug?
Record quirk - or bug?
- Subject: Record quirk - or bug?
- From: Paul Berkowitz <email@hidden>
- Date: Wed, 30 May 2001 19:39:03 -0700
On 5/30/01 7:26 PM, I wrote:
>
count (contents of rec)
>
-- 0
And it's the same with lists, which of course is what i was actually dealing
with in my Dialog Director problem.
set ls to {1, 2, 3}
-- {1, 2, 3}
length of ls
--3
count ls
-- 3
contents of ls
-- {1, 2, 3}
length of (contents of ls)
-- 3
count (contents of ls)
-- 0
There it is again. 0.
class of (contents of ls)
--list
AS 1.6/OS 9.1
--
Paul Berkowitz