Smallest numbers: Difference between revisions

(Added Quackery.)
Line 804:
=={{header|Quackery}}==
 
<syntaxhighlight lang="Quackery"> [ stack ] is candidates ( --> s )
[ stack ] is candidates ( --> s )
[ stack ] is results ( --> s )
 
Line 837 ⟶ 838:
sortwith
[ 1 peek swap 1 peek < ]
witheach[] swap
witheach [ 0 peek echo spjoin ] ] is task ( n --> [ )
 
51 task echo</syntaxhighlight>
 
{{out}}
 
<pre>[ 9 1 3 5 2 4 4 3 7 9 10 11 5 19 22 26 8 17 16 19 9 8 13 7 17 4 17 3 11 18 13 5 23 17 18 7 17 15 9 18 16 17 9 7 12 28 6 23 9 24 23 ]</pre>
 
=={{header|Raku}}==
1,462

edits