initial commit

This commit is contained in:
chatlanin
2023-02-26 15:16:48 +03:00
commit 5a829fad05
65 changed files with 2734 additions and 0 deletions

13
run Executable file
View File

@@ -0,0 +1,13 @@
#!/bin/zsh
PROJECT_NAME="rrr.v2"
command meson compile -C build
if [[ -z "$1" ]]; then
cd build
./bin/$PROJECT_NAME
cd ..
else
meson test $1 -C build
fi