Help for this page

Select Code to Download


  1. or download this
    sub x { 
        (); 
    ...
    @x = x(); 
     
    use Data::Dumper; warn Dumper([\@x]);
    
  2. or download this
    sub routine { return (); }
    @x = routine();
    print 0+@x;