In C:
#include "raylib.h"
int main(void)
{
InitWindow(800, 450, "basic window");
while (!WindowShouldClose())
{
BeginDrawing();
ClearBackground(RAYWHITE);
DrawText("Congrats! You created your first window!", 190, 200, 20, LIGHTGRAY);
EndDrawing();
}
Comment too long. Click here to view the full text.