Prints a message to the primary image buffer without the background color.
String msg - message to print.
function main() {
Screen:Show()
Screen:BackColor(16777215) //does not matter what color; in wont be displayed
Screen:PrintStringNoBC("Mabuhay!") //print the message
Screen:Render() //display the message to the Screen dialog box
Konsol:Delay(1000) //pause for a second to read the message
}