diff options
author | A404M <ahmadmahmoudiprogrammer@gmail.com> | 2024-09-25 19:47:29 +0330 |
---|---|---|
committer | A404M <ahmadmahmoudiprogrammer@gmail.com> | 2024-09-25 19:47:29 +0330 |
commit | c409b8aaf6b6f63bd68a3356e146ab80b2ec8c4b (patch) | |
tree | 65ea5801fd910fc6bcff3f2e8f06b5fd7d249c78 /stdlib | |
parent | f79290084948f3cf140395c270c07cf29ca58e8d (diff) |
fixed multiple variable definition bug
tried to implement import
Diffstat (limited to 'stdlib')
-rw-r--r-- | stdlib/builtins.felan | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/stdlib/builtins.felan b/stdlib/builtins.felan deleted file mode 100644 index 96f7335..0000000 --- a/stdlib/builtins.felan +++ /dev/null @@ -1,19 +0,0 @@ -void :: struct {}; - -i8 :: struct external; -i16 :: struct external; -i32 :: struct external; -i64 :: struct external; - -u8 :: struct external; -u16 :: struct external; -u32 :: struct external; -u64 :: struct external; - -f32 :: struct external; -f64 :: struct external; - -String :: struct external; - -print :: (str:String)->void external; - |