From 2440a27f92c72f17e90b7ad1fca9bc64ea23f68a Mon Sep 17 00:00:00 2001 From: czjstmax Date: Wed, 19 Nov 2025 23:03:11 +0100 Subject: cumulative commit - working on implementation changelogs: - updated build.sh build script - instead of the manually matched 'regex'-like BS, made an helper function matches() - maybe this made the code a bit more clunked because you have to manually create an array of strings with each and every possibility manually typed in but it is still hundreds of times better than what i was doing beforehand. also i forgot the binary inside of the commit but i'll make the build script handle that by deleting it after moving to PATH, probably a good idea. --- build.sh | 4 ++++ 1 file changed, 4 insertions(+) create mode 100755 build.sh (limited to 'build.sh') diff --git a/build.sh b/build.sh new file mode 100755 index 0000000..f272df6 --- /dev/null +++ b/build.sh @@ -0,0 +1,4 @@ +#!/usr/bin/env bash + +gcc g.c -o g -O3 -Wall -Wextra -pedantic || printf ":: shit\n" +printf ":: done\n" -- cgit v1.3.1