mirror of
https://github.com/unknwon/the-way-to-go_ZH_CN.git
synced 2025-08-12 01:21:38 +08:00
14 lines
165 B
Go
14 lines
165 B
Go
// c1.go
|
|
package rand
|
|
|
|
// #include <stdlib.h>
|
|
import "C"
|
|
|
|
func Random() int {
|
|
return int(C.random())
|
|
}
|
|
|
|
func Seed(i int) {
|
|
C.srandom(C.uint(i))
|
|
}
|