diff options
author | A404M <ahmadmahmoudiprogrammer@gmail.com> | 2024-09-19 15:53:13 +0330 |
---|---|---|
committer | A404M <ahmadmahmoudiprogrammer@gmail.com> | 2024-09-19 15:53:13 +0330 |
commit | d2ab53c625d386a4fbc6a9d5a5eb29faab1b3f0c (patch) | |
tree | 3e81b2dce883abb8b5b5ea2edd0300af24079539 /src/main.c | |
parent | 3df524bacbd6ca55177f481f8c98b118131b6527 (diff) |
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
Diffstat (limited to 'src/main.c')
-rw-r--r-- | src/main.c | 10 |
1 files changed, 2 insertions, 8 deletions
@@ -1,13 +1,7 @@ -#include <compiler/lexer/lexer.h> -#include <stdio.h> #include <stdlib.h> #include <utils/file.h> - -#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 <utils/time.h> +#include <vm/runner/runner.h> static const char *codes[] = { "print(\"\");", |