You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
263 B

package main
import (
"fmt"
"github.com/mritd/chinaid"
"time"
)
func main(){
for i:=0;i<100;i++{
fmt.Println(chinaid.Name())
time.Sleep(100*time.Millisecond)
}
for i:=0;i<100;i++{
fmt.Println(chinaid.IDNo())
time.Sleep(100*time.Millisecond)
}
}