5 lines
130 B
Text
5 lines
130 B
Text
require "ansi"
|
|
|
|
screen.clear() -- clear the terminal
|
|
cursor.move(6, 3) -- move to (6, 3)
|
|
print("Hello") -- print 'Hello'
|