Help for this page

Select Code to Download


  1. or download this
    my ($a, $b, $c, $d, $e) = ("aaa", "ab000", "123", "00123", "321ba",);
    $a++;
    ...
    $d++;
    $e++;
    print "a=$a\nb=$b\nc=$c\nd=$d\ne=$e\n"
    
  2. or download this
    # now that is golfing.
    perl -e '$a="0035";until("$a">50){print++$a,$/}'