Wrote the interpreter

This commit is contained in:
2022-08-06 07:58:32 +01:00
parent 0048c92cf5
commit 7a3986af33
10 changed files with 292 additions and 27 deletions

View File

@@ -1,7 +1,7 @@
CC=gcc
IDIR =.
CFLAGS=$(addprefix -I,$(IDIR)) -g -Wall -W -pedantic
CFLAGS=$(addprefix -I,$(IDIR)) -g # -Wall -W -pedantic
LIBS=
ODIR=obj