in reply to Re^2: tied, or modified?
in thread tied, or modified?
In other words,# perl -MO=Deparse,-p -e 'tied( sub {}->() )' tied({sub { } }->()); -e syntax OK
which I think is equivalent to the following, because the braces there are denoting a block rather than a hash:tied( { sub {} }->() );
<c> tied( ( sub {} )->() );
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: tied, or modified?
by JadeNB (Chaplain) on Oct 23, 2009 at 15:02 UTC |