shithub: mc

ref: aa40abd25de6fc94621a41b360b5808b3aa57b55
dir: /bench/intsort.myr/

View raw version
use std

const main = {
	var a, i

	a = std.slalloc(500_000)
	for i = 0; i < a.len; i++
		a[i] = std.randnum()
	;;
	std.sort(a, std.numcmp)
}