Sorting algorithms/Sleep sort: Difference between revisions

m
m (→‎{{header|Wren}}: Changed to Wren S/H)
 
Line 558:
 
=={{header|Elena}}==
ELENA 56.0 :
<syntaxhighlight lang="elena">import extensions;
import system'routines;
Line 570:
sleepSort()
{
self.forEach::(n)
{
threadControl.start(
Line 584:
}
}
 
public program()
{
program_arguments.skipping:(1).selectBy(mssgconst toInt<convertorOpintConvertOp>[1]).toArray().sleepSort();
 
console.readChar()
}</syntaxhighlight>
 
1

edit