10 Aug
2008
10 Aug
'08
10:57 p.m.
Parenscript ships with a helper macro like this: (defpsmacro length (a) `(.size ,a)) But there's no "size" function for arrays or strings... in fact, is there a "size" function in JS? For most things, it seems like one would want: (defpsmacro length (a) `(@ ,a length)) What am I missing? Dan