-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconsts.go
More file actions
59 lines (56 loc) · 838 Bytes
/
Copy pathconsts.go
File metadata and controls
59 lines (56 loc) · 838 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
package whatsyourvectorvictor
// Alphabet is the list of the NATO phonetic alphabet, easy index reference.
var Alphabet = []string{
"alpha",
"bravo",
"charlie",
"delta",
"echo",
"foxtrot",
"golf",
"hotel",
"india",
"juliet",
"kilo",
"lima",
"mike",
"november",
"oscar",
"papa",
"quebec",
"romeo",
"sierra",
"tango",
"uniform",
"victor",
"whiskey",
"xray",
"yankee",
"zulu",
}
// Digits translate ints to phonetic designations.
var Digits = map[int]string{
0: "zero",
1: "one",
2: "two",
3: "three",
4: "four",
5: "five",
6: "six",
7: "seven",
8: "eight",
9: "niner",
}
// USMCDigits are the USMC's extra flavor on phonetic number designations.
var USMCDigits = map[int]string{
0: "zero",
1: "won",
2: "too",
3: "tree",
4: "foewer",
5: "fife",
6: "six",
7: "seven",
8: "ate",
9: "niner",
}