adventofcode/2018/day24/day24.go

20 lines
194 B
Go
Raw Normal View History

2018-12-16 07:26:17 +00:00
package main
import "fmt"
const ()
func main() {
fmt.Println("vim-go")
}
type AttackType int
type Army struct {
units int
hp int
weaknesses []string
strength int
dam
}