hello world

This commit is contained in:
2026-03-09 07:18:48 +00:00
commit 2d75874423
6 changed files with 392 additions and 0 deletions

9
build.sh Normal file
View File

@@ -0,0 +1,9 @@
#!/usr/bin/env sh
CFLAGS="-Wall -Wextra -Wpedantic -Wswitch-enum -Werror -std=c23 -ggdb"
SRC="main.c"
OUT="main.out"
set -xe
cc $CFLAGS -o $OUT $SRC;