[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: RE: Constructing tables in tables
- From: "Henderson, Michael D" <michael.d.henderson@...>
- Date: Wed, 23 Feb 2005 14:11:43 -0700
Thanks. That fixed the error. Then I noticed I was starting idx at 0, not 1. Things are running better now.
Thanks again,
Mike
-----Original Message-----
From: Romulo Bahiense
> idx = 0;
> print(" info: found " .. o.comments.getn .. " comments\n");
> [...] I get an error (attempt to concatenate field `getn' (a nil value)). [...]
hmmm.. shouldn't be something like:
print(" info: found " .. table.getn(o.comments) .. " comments\n");
?
--rb