RosettaCodeData/Task/Hello-world-Graphical/Wren/hello-world-graphical.wren
2023-07-01 13:44:08 -04:00

11 lines
190 B
Text

import "graphics" for Canvas, Color
class Game {
static init() {
Canvas.print("Goodbye, World!", 10, 10, Color.white)
}
static update() {}
static draw(alpha) {}
}