in reply to Re: How to tell if a variable is blessed ?
in thread How to tell if a variable is blessed ?

I tried to do it with ref, but than the only solution I can think of is:
if ( ref($a) && ref($a) !~ /HASH|ARRAY/ ) { $a->blabla(...) ; }
According to the answers to this post I assume this is the answer ?!

Thanks
Luca