Files
Odin/core/math/rand/system_js.odin
T
2023-10-27 00:18:41 +02:00

13 lines
229 B
Odin

package rand
foreign import "odin_env"
foreign odin_env {
@(link_name = "rand")
rand_f64 :: proc "contextless" () -> f64 ---
}
@(require_results)
_system_random :: proc() -> u64 {
return u64(rand_f64() * 0x1fffffffffffff)
}