Initial commit

This commit is contained in:
RoyR
2026-03-14 14:14:37 -04:00
commit da2fcb6260
22 changed files with 6775 additions and 0 deletions

18
run_tests.sh Normal file
View File

@@ -0,0 +1,18 @@
#!/bin/bash
# Public domain / CC0. Use freely for any purpose. RoyR 2026
# run_tests.sh - Quick test runner script
set -e
echo "Building Common compiler..."
gcc -o common common.c
echo "Building test runner..."
gcc -std=c99 -o test_runner test_runner.c
echo ""
echo "Running tests..."
echo "================"
./test_runner
exit $?