#include "raylib.h"
int main() {
// InitWindow(int width, int height, const char* title);
InitWindow(800, 600, "Raylib Window");
while (!WindowShouldClose()) {
BeginDrawing();
// void ClearBackground(Color color);
ClearBackground(BLACK);
// DrawText(const char* text, int posX, int posY, int fontSize, Color color);
DrawText("Raylib Window",300, 260, 25, GREEN);
EndDrawing();
}
CloseWindow();
}
/*
run:
*/