Compare sorting algorithms' performance: Difference between revisions

Content added Content deleted
(Compare sorting algorithms' performance in FreeBASIC)
m (→‎{{header|Wren}}: Minor tidy)
Line 3,963: Line 3,963:


Results presented in tabular form as Wren doesn't have a plotting library available at the present time.
Results presented in tabular form as Wren doesn't have a plotting library available at the present time.
<syntaxhighlight lang="ecmascript">import "random" for Random
<syntaxhighlight lang="wren">import "random" for Random
import "/sort" for Sort
import "./sort" for Sort
import "/fmt" for Fmt
import "./fmt" for Fmt


var rand = Random.new()
var rand = Random.new()