Help for this page

Select Code to Download


  1. or download this
    use strict; #always and forever, amen.
    use warnings;  #or else.
    
    ...
    #@ARGV is an array containing the arguments supplied. We're taking the
    + first value.
    print "\n$argument"; 
    #This here will show you exactly what has been put into $argument.
    
  2. or download this
    
    $bar='Hello,';
    ...
    #will first print out the contents of $bar, then $baz because 
    #those are the arguments given.
    }
    
  3. or download this
    foo("square", 3);
    
    sub foo{
      my ($shape, $size) = @_;
    }
    
  4. or download this
    
    
    
    C(qw/74 97 104 112/);sub C{while(@_){$c**=$C;print
    (map{chr($C!=$c?shift:pop)}$_),$C+=@_%2!=1?1:0}}