From d2ab53c625d386a4fbc6a9d5a5eb29faab1b3f0c Mon Sep 17 00:00:00 2001 From: A404M Date: Thu, 19 Sep 2024 15:53:13 +0330 Subject: removing print command and keyword added function call support cleaned up keyword and operator checking and speed it up a little bit cleaning includes added builtin functions --- src/main.c | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) (limited to 'src/main.c') diff --git a/src/main.c b/src/main.c index c40bfec..c23696e 100644 --- a/src/main.c +++ b/src/main.c @@ -1,13 +1,7 @@ -#include -#include #include #include - -#include "compiler/code_generator/code_generator.h" -#include "compiler/parser/parser.h" -#include "utils/time.h" -#include "utils/types.h" -#include "vm/runner/runner.h" +#include +#include static const char *codes[] = { "print(\"\");", -- cgit v1.2.3