Screen:Render()
Transfers the graphics from the primary image buffer to the viewing Screen.
All graphics are drawn on a none viewable buffer – use this function to display it on the viewable Screen.
function main() { Screen:Show() Screen:PrintString("Mabuhay!") //print the message Screen:Render() //display the message to the viewing Screen Konsol:Delay(1000) //pause for a second to read the message }