blob: e1c8d5429359743a410fe0b3dfa217bdd5056af6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
import raylib/raylib
InitWindow(800, 600, "basic example")
SetTargetFPS(60)
while not WindowShouldClose():
BeginDrawing()
ClearBackground(White)
DrawText("Hello World!", 100, 100, 20, Black)
EndDrawing()
|