in reply to Re^9: Definition of numerically equal and rationale for 'you' == 'me'
in thread Definition of numerically equal and rationale for 'you' == 'me'

That works in Perl 5 as well:
perl -Mconstant=x,1 -MO=Deparse -e 'print x x x' print '1' x '1'; -e syntax OK
But:
perl -MO=Deparse -e 'sub x {1} print x x x' sub x { 1; } print x(x(x())); -e syntax OK

Replies are listed 'Best First'.
Re^11: Definition of numerically equal and rationale for 'you' == 'me'
by moritz (Cardinal) on Mar 03, 2012 at 14:53 UTC