Created
January 29, 2026 18:36
-
-
Save moomerman/0b48e4a5b284f6706fc1b456c8c23260 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package main | |
| import rl "vendor:raylib" | |
| main :: proc() { | |
| rl.InitWindow(1280, 720, "Hello Zed!") | |
| for !rl.WindowShouldClose() { | |
| rl.BeginDrawing() | |
| rl.ClearBackground(rl.BLUE) | |
| rl.DrawText("Hello Zed!", 380, 250, 100, rl.BLACK) | |
| rl.EndDrawing() | |
| } | |
| rl.CloseWindow() | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment