https://forum.dlang.org/post/[email protected]https://dlang.org/phobos/std_random.html#.uniform
uniform's docs code communicates using a verbose seed; this is wildly unnecessary for 95% of cases(and if someones doing cyptro they should read and understand the whole lib)
pathologically simple code such as:
```d
import std;
void main(){
uniform(0,100).writeln;
}
```
should be front and center
Comment #1 by robert.schadek — 2024-12-01T16:42:46Z