in reply to Re: Anon Struct Instance
in thread Anon Struct Instance
The -> operator does the dereferencing, but I think
$$sn->datetime($datetime)
actually means
$($sn->datetime($datetime))
and not
($$sn)->datetime($datetime)
So, it was trying to dereference the wrong thing.
Glad you got it working! Have fun.
Alan
|
|---|