RosettaCodeData/Task/Permutations/LFE/permutations-2.lfe
2023-07-01 13:44:08 -04:00

2 lines
71 B
Text

> (permute '(1 2 3))
((1 2 3) (1 3 2) (2 1 3) (2 3 1) (3 1 2) (3 2 1))