mirror of
https://github.com/crate-ci/typos.git
synced 2024-11-22 09:01:04 -05:00
19 lines
260 B
Go
Vendored
19 lines
260 B
Go
Vendored
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)
|
|
}
|