Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -w
    
    ...
    }
    
    terminate("arturo"); # prints "the boss has canned arturo's sorry butt
    +"
    
  2. or download this
    #!/usr/bin/perl -w
    
    ...
    
    $Robert = "the boss";
    print "\$Robert = $Robert\n";
    
  3. or download this
    #!/usr/bin/perl -w
    
    ...
    
    $main::Robert = "the boss";
    print "\$main::Robert = $main::Robert\n";
    
  4. or download this
    #!/usr/bin/perl -w
    
    ...
    
    print "Here at work, 'Robert' is $Robert, but over at the pool hall, '
    +Robert'
    is $PoolHall::Robert\n";
    
  5. or download this
    #!/usr/bin/perl -w
    
    ...
    print "\$foo: $foo\n"; # prints "Hey!" -- the my variable's still in s
    +cope
    # if we hadn't made that declaration above, this would be an error: th
    +e
    # interpreter would tell us that Bar::foo has not been defined.
    
  6. or download this
    #!/usr/bin/perl -w
    
    ...
    sub showfoo {
        print "\$foo: $foo\n";
    }