initial commit

This commit is contained in:
2025-08-16 18:25:33 -04:00
commit c73be4c21c
6 changed files with 484 additions and 0 deletions

5
Makefile Normal file
View File

@ -0,0 +1,5 @@
test:
$(CC) test.c ds.c ds.h -o test -g2 -Og && ./test
.PHONY: test
.DEFAULT: test