Help for this page

Select Code to Download


  1. or download this
    no strict;
    sub c { print "see?\n" }
    @x = ( a => b => c );
    
  2. or download this
    no strict;
    sub c;
    @x = ( a => b => c );
    sub c { print "see?\n" }
    
  3. or download this
    no strict;
    @x = ( a => b => c );
    sub c { print "see?\n" }