P22 - 创建一个包含给定范围内所有整数的列表。
作者:Scott Penrose
规范
P22 (*) Create a list containing all integers within a given range.
If first argument is smaller than second, produce a list in
decreasing order.示例
> say ~range(4, 9); 4 5 6 7 8 9
源代码: P22-scottp.pl
use v6;
# a. Simple version - but only works in order
say ~list(4 .. 9);
# b. Try reverse
# Simple check on arguments
# Then just reverse the forward version of the list
sub range($a, $b) {
if ($a > $b) {
return list($b .. $a).reverse;
}
return list($a .. $b);
}
say ~range(4, 9);
say ~range(7, 2);
Perl 6 示例