5 lines
162 B
Text
5 lines
162 B
Text
import "./ansi" for Screen, Cursor
|
|
|
|
Screen.clear() // clear the terminal
|
|
Cursor.move(6, 3) // move to (6, 3)
|
|
System.print("Hello") // print 'Hello'
|