Help for this page
#! perl -slw use strict; ... } print @$_ for permutations @ARGV;
sub permutations { return !@_ ? [] : map{ ... } print @$_ for permutations @ARGV;