12 lines
215 B
Lua
12 lines
215 B
Lua
require "quick-terminal-customization"
|
|
|
|
function LoopStart()
|
|
os.execute("clear")
|
|
print(string.color(TERMINAL_COLOR.HighYellow,"-- HEONIAN LANGUAGE EXERCISES (HLE) --"))
|
|
end
|
|
|
|
|
|
while 1 do
|
|
LoopStart()
|
|
io.read()
|
|
end |