ref: ca311f0bd83c9d72848f5361a3f1736c7bb751da
dir: /lib/thread/util.myr/
use std
use thread
pkg thrtestutil =
	const mkherd : (n : uint32, fn : (-> void) ->void)
;;
const mkherd = {n, fn
	for var i = 0; i < n; i++
		std.try(thread.spawn(fn))
	;;
}