dir import

This commit is contained in:
agra
2026-02-20 12:27:06 +02:00
parent 1ecac79642
commit 5956303366
5 changed files with 139 additions and 28 deletions

View File

@@ -0,0 +1 @@
hello :: () -> string { "hello from testpkg"; }

View File

@@ -0,0 +1,2 @@
add :: (a: s32, b: s32) -> s32 { a + b; }
mul :: (a: s32, b: s32) -> s32 { a * b; }