20 lines
194 B
Go
20 lines
194 B
Go
|
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
|
||
|
}
|