On Sat, Feb 13, 2016 at 4:30 PM, Matt Wette <matthew.we...@verizon.net> wrote: > Every time I execute > $ guile -c '(simple-format #t "~S\n" (random 100))’ > I get the same result. > > Is this a bug?
No. You need to initialize the random number generator with a different seed if you want different results. See 6.6.2.14 Random Number Generation in the manual for details. - Dave