Permutations: Difference between revisions

No edit summary
Line 1,049:
OK
---------------------------</pre>
=={{header|Arturo}}==
<lang arturo>print $(permutations #(1 2 3))</lang>
{{out}}
<pre>#(#(1 2 3) #(1 3 2) #(2 1 3) #(2 3 1) #(3 1 2) #(3 2 1))</pre>
 
=={{header|Batch File}}==
Recursive permutation generator.
1,532

edits