Added some spaces to better the view
This commit is contained in:
parent
e640fcd010
commit
4709767ce3
|
@ -196,7 +196,7 @@ end
|
||||||
|
|
||||||
-- PROGRAM START
|
-- PROGRAM START
|
||||||
|
|
||||||
print("Specific Mode?")
|
print(" Specific Mode?")
|
||||||
print(" (0) Arabic")
|
print(" (0) Arabic")
|
||||||
print(" (1) Japanese Romaji")
|
print(" (1) Japanese Romaji")
|
||||||
print(" (2) Japanese Kana")
|
print(" (2) Japanese Kana")
|
||||||
|
@ -204,15 +204,15 @@ print(" (3) Japanese Kanji")
|
||||||
|
|
||||||
setmode = io.read()
|
setmode = io.read()
|
||||||
|
|
||||||
print("Tiers of 10 colored? (Y/n)")
|
print(" Tiers of 10 colored? (Y/n)")
|
||||||
|
|
||||||
coloriz = io.read()
|
coloriz = io.read()
|
||||||
|
|
||||||
print("Show equivalences? (Y/n)")
|
print(" Show equivalences? (Y/n)")
|
||||||
|
|
||||||
skip = io.read()
|
skip = io.read()
|
||||||
|
|
||||||
print("Ready?")
|
print(" Ready?")
|
||||||
io.read()
|
io.read()
|
||||||
|
|
||||||
if string.upper(coloriz) == "N" then
|
if string.upper(coloriz) == "N" then
|
||||||
|
@ -250,7 +250,7 @@ while 1 do
|
||||||
-- ASK
|
-- ASK
|
||||||
print("")
|
print("")
|
||||||
e, d, c, b, a = GetNumber(number,arabic_script)
|
e, d, c, b, a = GetNumber(number,arabic_script)
|
||||||
print(
|
print(" "..
|
||||||
Colorize( e, COLOR.HighGreen)..
|
Colorize( e, COLOR.HighGreen)..
|
||||||
Colorize( d, COLOR.HighPurple)..
|
Colorize( d, COLOR.HighPurple)..
|
||||||
Colorize( c, COLOR.HighRed)..
|
Colorize( c, COLOR.HighRed)..
|
||||||
|
@ -302,6 +302,7 @@ while 1 do
|
||||||
Colorize( b, COLOR.HighYellow)..
|
Colorize( b, COLOR.HighYellow)..
|
||||||
Colorize( a, COLOR.HighCyan)
|
Colorize( a, COLOR.HighCyan)
|
||||||
)
|
)
|
||||||
|
print("")
|
||||||
io.read()
|
io.read()
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue