Created
August 7, 2026 21:03
-
-
Save abnrk/8f41beb4769b07df3c455e716e91d923 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var rng_state; | |
| function xorshift32() { | |
| rng_state ^= rng_state << 13; | |
| rng_state ^= rng_state >> 17; | |
| rng_state ^= rng_state << 5; | |
| return rng_state; | |
| } | |
| function rnd(max) { | |
| return Math.abs(xorshift32()) % max; | |
| } | |
| rng_state = Date.now(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment