mirror of
https://github.com/Leonmmcoset/CMLeonOS.git
synced 2026-04-21 19:24:00 +00:00
8 lines
166 B
Lua
8 lines
166 B
Lua
|
|
local window = gui.createWindow("Hello", 400, 300)
|
||
|
|
|
||
|
|
gui.clearWindow(window, "white")
|
||
|
|
|
||
|
|
gui.drawText(window, "Hello world!", "black", 10, 10)
|
||
|
|
|
||
|
|
gui.updateWindow(window)
|