RosettaCodeData/Task/Permutations/LFE/permutations-2.lfe

3 lines
71 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
> (permute '(1 2 3))
((1 2 3) (1 3 2) (2 1 3) (2 3 1) (3 1 2) (3 2 1))