This repository has been archived on 2024-06-20. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
HelloWorld/BrightScript/helloWorld.bs
2021-12-05 07:39:13 +08:00

13 lines
259 B
Text

sub Main()
port = CreateObject("roMessagePort")
screen = CreateObject("roTextScreen")
screen.SetText("Hello World")
screen.setMessagePort(port)
screen.Show()
while true
msg = wait(0, port)
if(msg.isScreenClosed())
return -1
end if
end while
end sub