Files
the-way-to-go_ZH_CN/eBook/examples/chapter_3/CandGo/c1.go
2013-04-20 22:19:12 -04:00

14 lines
152 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))
}