This commit is contained in:
Daniel Ledda
2025-12-25 14:05:36 +01:00
commit a67e150d0f
12 changed files with 4913 additions and 0 deletions

7
build Executable file
View File

@@ -0,0 +1,7 @@
#!/bin/bash
clang -g -g3 -lm -DOS_LINUX=1 -DENABLE_ASSERT=1 ./app.c -o ./target/app
if [[ $1 == "run" ]] then
./target/app
fi