Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    use warnings;
    ...
    
    my $method = shift;
    $A->$method(@ARGV);
    
  2. or download this
    $ 1.pl show World
    Hello World!
    
  3. or download this
    $A->${\ $ARGV[0] }(@ARGV[1 .. $#ARGV]);