Update README.md

This commit is contained in:
Milan Nikolic 2022-08-27 18:58:20 +02:00
parent 8e21086fe1
commit 0a5691486b
No known key found for this signature in database
GPG key ID: 9229D0EAA3AA4E75

View file

@ -73,14 +73,12 @@ import "github.com/gen2brain/raylib-go/raylib"
func main() {
rl.InitWindow(800, 450, "raylib [core] example - basic window")
rl.SetTargetFPS(60)
for !rl.WindowShouldClose() {
rl.BeginDrawing()
rl.ClearBackground(rl.RayWhite)
rl.DrawText("Congrats! You created your first window!", 190, 200, 20, rl.LightGray)
rl.EndDrawing()