feat: Add parsing support for primitive types.

This commit is contained in:
Jooris Hadeler
2026-01-16 21:02:14 +01:00
parent 4edcd1a7b7
commit fbf6726a78
4 changed files with 67 additions and 1 deletions

4
example/simple.bky Normal file
View File

@@ -0,0 +1,4 @@
fn main(): i32 {
let return_code: i32 = 12;
return return_code;
}