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

12 lines
198 B
Odin

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