package-type imports

This commit is contained in:
2026-06-10 00:08:33 +02:00
parent 087fdb45d5
commit d6e03b6f08
104 changed files with 1799 additions and 273 deletions
+5
View File
@@ -0,0 +1,5 @@
import "../b"
one :: func(value int) i32 {
return b.two(value)
}
+5
View File
@@ -0,0 +1,5 @@
import "../a"
main :: func() i32 {
return a.one(1)
}
+5
View File
@@ -0,0 +1,5 @@
import "../a"
two :: func(value int) i32 {
return a.one(value)
}