diff options
author | flywind <43030857+xflywind@users.noreply.github.com> | 2021-02-11 18:00:01 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-11 16:00:01 -0800 |
commit | 18c24eb4d0694beb971581d59a4570826c5fa01f (patch) | |
tree | df0a6a3404b20712befe354cda4b13597d45e62f /lib/pure | |
parent | 81533a0014a8372207426dc9d067aff4b59db8af (diff) | |
download | Nim-18c24eb4d0694beb971581d59a4570826c5fa01f.tar.gz |
add system random to stdlib: std/sysrand (#16459)
Diffstat (limited to 'lib/pure')
-rw-r--r-- | lib/pure/random.nim | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/pure/random.nim b/lib/pure/random.nim index f03cae56a..63672b496 100644 --- a/lib/pure/random.nim +++ b/lib/pure/random.nim @@ -70,6 +70,7 @@ ## ## See also ## ======== +## * `std/sysrand module<sysrand.html>`_ for cryptographically secure pseudorandom number generator ## * `math module<math.html>`_ for basic math routines ## * `mersenne module<mersenne.html>`_ for the Mersenne Twister random number ## generator |