Files
the-way-to-go_ZH_CN/eBook/examples/chapter_3/CandGo/c1.go
2015-03-03 12:25:25 -05:00

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))
}