mirror of
https://github.com/nim-lang/Nim.git
synced 2026-04-19 05:50:30 +00:00
add system random to stdlib: std/sysrand (#16459)
This commit is contained in:
13
tests/stdlib/tsysrand.nim
Normal file
13
tests/stdlib/tsysrand.nim
Normal file
@@ -0,0 +1,13 @@
|
||||
discard """
|
||||
targets: "c cpp js"
|
||||
"""
|
||||
|
||||
import std/sysrand
|
||||
|
||||
|
||||
doAssert urandom(0).len == 0
|
||||
doAssert urandom(10).len == 10
|
||||
doAssert urandom(20).len == 20
|
||||
doAssert urandom(120).len == 120
|
||||
doAssert urandom(113).len == 113
|
||||
doAssert urandom(1234) != urandom(1234) # unlikely to fail in practice
|
||||
Reference in New Issue
Block a user