Help for this page

Select Code to Download


  1. or download this
    @z2 = ("01" .. "31");
    print $z2[$mday];
    
  2. or download this
    @numbers = ( 0+$first .. 0+$last );
    
  3. or download this
    @alphabet = ("A" .. "Z");
    
  4. or download this
    $hexdigit = (0 .. 9, "a" .. "f")[$num & 15];