5 lines
83 B
Perl
5 lines
83 B
Perl
|
#!/usr/bin/perl -w
|
||
|
|
||
|
use strict;
|
||
|
|
||
|
print "Going from z to 3: ", ('z' .. 3), "\n";
|