INITIAL COMMIT

This commit is contained in:
Abdelrahman Said 2023-05-29 22:23:05 +01:00
commit 6afd2ad97b

9
build Executable file
View File

@ -0,0 +1,9 @@
#!/usr/bin/bash
CC=clang++
CFLAGS="-g -Wall -Werror -pedantic"
SRC=*.cpp
OUT=main
set -x
$CC $CFLAGS $SRC -o $OUT