feat: rename .ada to .cada + fix: include nob from external

This commit is contained in:
2025-08-27 18:44:10 +02:00
parent a5324195f9
commit 583ea59d4c
3 changed files with 4 additions and 4 deletions

9
test.cada Normal file
View File

@ -0,0 +1,9 @@
extrn putchar;
fn main() {
let a = 34;
let b = 35;
let PI = 3.1415;
putchar(a + b);
}