Skip to content

Instantly share code, notes, and snippets.

@linluxiang
linluxiang / searchcity.go
Created November 28, 2013 14:44
Random choose a city, the more population it has, the more possibly it may be choosed.
package main
import (
"math/rand"
"time"
)
type SearchError struct {
Reason string
}