Sort primes from list to a list: Difference between revisions

added Arturo
(Added Quackery.)
(added Arturo)
Line 36:
are: 2 7 13 43 103
</pre>
 
=={{header|Arturo}}==
 
<syntaxhighlight lang="arturo">lst: [2 43 81 122 63 13 7 95 103]
 
print sort select lst => prime?</syntaxhighlight>
 
{{out}}
 
<pre>2 7 13 43 103</pre>
 
=={{header|AutoHotkey}}==
1,532

edits