mirror of
https://github.com/Ed94/Odin.git
synced 2026-07-11 22:01:25 -07:00
12 lines
198 B
Odin
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)
|
|
}
|