Help for this page

Select Code to Download


  1. or download this
    perl -Mconstant=x,1 -MO=Deparse -e 'print x x x'
    print '1' x '1';
    -e syntax OK
    
  2. or download this
    perl  -MO=Deparse -e 'sub x {1} print x x x'
    sub x {
    ...
    }
    print x(x(x()));
    -e syntax OK