mirror of
https://github.com/wahyd4/zombie.git
synced 2026-08-11 13:45:53 +10:00
18 lines
229 B
Go
18 lines
229 B
Go
package main
|
|
|
|
import (
|
|
"github.com/wahyd4/zombie"
|
|
"log"
|
|
)
|
|
|
|
const input = "input.txt"
|
|
|
|
func main() {
|
|
application, err := zombie.Init(input)
|
|
if err != nil {
|
|
log.Panic(err.Error())
|
|
}
|
|
application.Run()
|
|
application.Stats()
|
|
}
|