typos/assets/main.go

20 lines
260 B
Go
Raw Normal View History

2019-01-22 17:01:33 -05:00
package main
import (
"fmt"
)
func printDict(dict []string) {
length := len(dict)
for i, word := range dict {
if i%2 == 0 && i != length {
fmt.Printf("%s,%s\n", word, dict[i+1])
}
}
}
func main() {
printDict(DictMain)
printDict(DictAmerican)
}