Help for this page

Select Code to Download


  1. or download this
    my @arr=("jesus","heaven");
     
    {
    ...
    }
     
    print $arr[t::NAME],$arr[t::ADDRESS];
    
  2. or download this
    > perl -MO=Deparse /tmp/tst.pl
    sub t::NAME () { 0 }
    ...
    }
    print $arr[0], $arr[1];
    /tmp/tst.pl syntax OK