Skip to content

Instantly share code, notes, and snippets.

@ihaveamac
Created January 7, 2016 18:13
Show Gist options
  • Save ihaveamac/456f16429eea9412410e to your computer and use it in GitHub Desktop.
Save ihaveamac/456f16429eea9412410e to your computer and use it in GitHub Desktop.
Screen.waitVblankStart()
Screen.refresh()
Screen.debugPrint(5, 5, "Hello world!", Color.new(255, 255, 255), TOP_SCREEN)
Screen.debugPrint(5, 5, "Here's a random number: "..math.random(1, 100), Color.new(255, 0, 0), BOTTOM_SCREEN)
Screen.flip()
while true do
if Controls.check(Controls.read(), KEY_B) then
System.exit()
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment