//native export async function main(min = 0, max = 100) { return Math.floor(Math.random() * (max - min + 1)) + min; }
Submitted by hugo989 7 days ago