diff options
author | A404M <ahmadmahmoudiprogrammer@gmail.com> | 2025-06-09 15:15:28 +0330 |
---|---|---|
committer | A404M <ahmadmahmoudiprogrammer@gmail.com> | 2025-06-09 15:15:28 +0330 |
commit | 922b6c51fbcdabd3823e311c46fe55af193196e1 (patch) | |
tree | 976876bcbdc18308b8ca8672684e2c751a7e0350 /code/main.felan | |
parent | e711e6e55e9c83563db9bb04af7516632f27b91d (diff) |
fixing bug in anytype
Diffstat (limited to 'code/main.felan')
-rw-r--r-- | code/main.felan | 18 |
1 files changed, 7 insertions, 11 deletions
diff --git a/code/main.felan b/code/main.felan index be0bc72..b297e3f 100644 --- a/code/main.felan +++ b/code/main.felan @@ -1,8 +1,9 @@ -/* -@import("basic.felan"); -file :: @import("file.felan"); +// @import("basic.felan"); +@import("lib/vector.felan"); +// @import("lib/memory.felan"); -t :: (comptime formatter : string) macro -> string { +/* +t :: (comptime formatter : string) macro -> void { i := 0; in := 0; opening := 0; @@ -27,13 +28,8 @@ t :: (comptime formatter : string) macro -> string { }; */ -p :: () macro -> void { - @putc(a); - // print("Hello world"); -}; - main :: () -> void { - a := 'a'; - p(); + v := vector_new(u8); + delete(v); }; |