Help for this page

Select Code to Download


  1. or download this
    #arrays as stacks
    my @stack1 = qw/this is a good feature/;
    ...
        print "left on stack : @stack1 \n";
        print "stack size is $#stack1 \n";
    }
    
  2. or download this
    ##output
    initial array contains : this is a good feature
    ...
    stack size is 2
    
    C:\Documents and Settings>