7 lines
150 B
Text
7 lines
150 B
Text
|
|
# This will display a message at a specific position on the terminal screen
|
||
|
|
.begin
|
||
|
|
cursor 6,3
|
||
|
|
display "Hello!"
|
||
|
|
return
|
||
|
|
# This is the end of the script
|