update stuff

This commit is contained in:
2026-02-05 19:14:31 +11:00
parent 4333c42305
commit 755e7f9606
8 changed files with 175 additions and 52 deletions

View File

@@ -1,11 +1,15 @@
#if 0
set -eou
set -e
if [[ ! -v OUTPUT ]]; then
OUTPUT=solstice
fi
if [[ ! -v CFLAGS ]]; then
CFLAGS=""
fi
gcc "$0" -o "$OUTPUT"
if not [ $# -lt 1 ]; then
@@ -30,6 +34,8 @@ exit
// -- LEXER --
#include "src/lexer/SolsType.c"
#include "src/lexer/SolsToken.c"
#include "src/lexer/SolsLiteral.c"
#include "src/lexer/lexer.c"
// -- PARSER --