Deno module starter repository.
import { mtrand } from "https://deno.land/x/mtrand/mod.ts";
const rand = mtrand(0);
for(let i=0; i<10; i++) {
console.log(`${i} - ${rand.next().value}`)
}
cast number to Uint32 parameter number
generate number with mt19937 method parameter number
# unit tests
deno ./test.ts
deno fmt **/*.ts