Minimal executable

This commit is contained in:
2025-05-24 12:58:19 +02:00
parent 44ffc26d98
commit 2cd1d4c0bf
2 changed files with 20 additions and 0 deletions

7
main.cpp Normal file
View File

@@ -0,0 +1,7 @@
#include <print>
#include <SDL3/SDL.h>
auto main() -> int {
std::println("Hello World!");
return 0;
}