diff options
author | A404M <ahmadmahmoudiprogrammer@gmail.com> | 2025-02-18 12:22:58 +0330 |
---|---|---|
committer | A404M <ahmadmahmoudiprogrammer@gmail.com> | 2025-02-18 12:22:58 +0330 |
commit | 7903ae7711f323697bbc42ad756c8ea0138c70dc (patch) | |
tree | 117f2b35a89c0c48b2902dbeccf1f5d63f29294e /src/main.c | |
parent | cb6eaf13c3b3b58779a18255177589d8d5fbf85b (diff) |
add f16 f32 f64 f128
Diffstat (limited to 'src/main.c')
-rw-r--r-- | src/main.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -2,6 +2,7 @@ #include "runner/runner.h" #include "utils/file.h" #include "utils/log.h" +#include "utils/type.h" #include <stdio.h> #include <stdlib.h> @@ -103,7 +104,9 @@ static int run(const char *filePath, bool shouldPrint) { } int main(int argc, char *argv[]) { + checkTypes(); fileInit(); + if (argc < 2) { // compileRun("test/main.felan", "build/out", false); // run("test/main.felan", false); |