Does random use a fixed seed? When I repeatedly run a lil script in lilt, random[range 15] returns 4 every time.
Lilt uses a fixed seed by default; this is a design decision inherited from K.
One simple way to randomize it would be something like
sys.seed:sys.ms
Note that Decker automatically randomizes the RNG seed at startup.
Cool. Thanks!