Help for this page

Select Code to Download


  1. or download this
        print ++($foo = "99");    # prints "100"
        print ++($foo = "a0");    # prints "a1"
        print ++($foo = "Az");    # prints "Ba"
        print ++($foo = "zz");    # prints "aaa"
    
  2. or download this
       use charnames "greek";
       my @greek_small =  map { chr }
                              (ord("\N{alpha}") .. ord("\N{omega}"));
    
  3. or download this
       my @chars = map {chr} $ord_first .. $ord_last;