Help for this page

Select Code to Download


  1. or download this
    #! /usr/bin/perl -w
    use strict;
    ...
    sub foobar {
      print "foo$_[1]bar\n";
    }
    
  2. or download this
    Use of uninitialized value in concatenation (.) or string at - line 7.
    foobar
    
  3. or download this
    #! /usr/bin/perl -w
    use strict;
    ...
        print "foobar\n";
      }
    }
    
  4. or download this
    #! /usr/bin/perl
    use strict;
    ...
      no warnings qw (uninitialized);
      print "foo$_[1]bar\n";
    }