box-o-sand/conway/web.go

15 lines
196 B
Go
Raw Normal View History

package conway
import (
"math/rand"
"time"
)
func init() {
rand.Seed(time.Now().UTC().UnixNano())
}
func RunWebGame(height, width, sleepMs int, mutate bool) (int, error) {
return -1, nil
}