-
Notifications
You must be signed in to change notification settings - Fork 0
/
dict.lua
48 lines (44 loc) · 822 Bytes
/
dict.lua
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
-- ITU standard
-- dot (.) one time-unit
-- dash (-) three time-units
-- inter-element gap (while signaling one character) one time-unit
-- short gap (Between letters) three time-units
-- medium gap (Between words) seven time-units
local d = {}
d['a'] = '.-'
d['b'] = '-...'
d['c'] = '-.-.'
d['d'] = '-..'
d['e'] = '.'
d['f'] = '..-.'
d['g'] = '--.'
d['h'] = '....'
d['i'] = '..'
d['j'] = '.---'
d['k'] = '-.-'
d['l'] = '.-..'
d['m'] = '--'
d['n'] = '-.'
d['o'] = '---'
d['p'] = '.--.'
d['q'] = '--.-'
d['r'] = '.-.'
d['s'] = '...'
d['t'] = '-'
d['u'] = '..-'
d['v'] = '...-'
d['w'] = '.--'
d['x'] = '-..-'
d['y'] = '-.--'
d['z'] = '--..'
d['1'] = '.----'
d['2'] = '..---'
d['3'] = '...--'
d['4'] = '....-'
d['5'] = '.....'
d['6'] = '-....'
d['7'] = '--...'
d['8'] = '---..'
d['9'] = '----.'
d['0'] = '-----'
return d