ref: c79e884fc2aedd7695d73b1f0e5fe8059cb451d3
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))
;;
}