Help for this page

Select Code to Download


  1. or download this
    use strict;
    
    my %h = (a1 => 1);
    ...
    print "x$h{a1}x\n"; #print 1
    
    print "x$1x\n"; #print "a1"
    
  2. or download this
    test work
    xx
    x1x
    xa1 x