comparison hello_world/main.c @ 0:5695ef413be0

Initialized mono repo with bazels with few examples.
author June Park <parkjune1995@gmail.com>
date Tue, 23 Sep 2025 10:05:25 -0700
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:5695ef413be0
1 #include <stdio.h>
2 #include "helper/helper.h"
3 #include "third_party/raylib/raylib-5.5_macos/include/raylib.h"
4
5 int main()
6 {
7 InitWindow(800, 450, "raylib [core] example - basic window");
8 while (!WindowShouldClose())
9 {
10 BeginDrawing();
11 ClearBackground(RAYWHITE);
12 DrawText("Congrats! You created your first window!", 190, 200, 20, LIGHTGRAY);
13 EndDrawing();
14 }
15 CloseWindow();
16 return 0;
17 }