From 87e4777aee530fa3bd6ce6fe1d7a206819247660 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Sun, 8 Oct 2017 18:29:59 -0700 Subject: [PATCH] Added random seed. --- lib/utils.nom | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/utils.nom b/lib/utils.nom index 55503e1..6fbf57a 100644 --- a/lib/utils.nom +++ b/lib/utils.nom @@ -31,6 +31,9 @@ compile [%start to %stop by %step, %start to %stop via %step] to: ".." parse [%start to %stop] as: %start to %stop by 1 # Random functions +lua code ".." # Seed + |math.randomseed(os.time()); + |for i=1,20 do; math.random(); end; compile [random number, random, rand] to: "math.random()" compile [random int %n, random integer %n, randint %n] to: "math.random(\(%n as lua))" compile [random from %low to %high, random number from %low to %high, rand %low %high] to: