vrmm build files

This commit is contained in:
allexanderbergmns
2026-08-25 14:45:19 +02:00
parent 9b22be48a5
commit 387079d720
20 changed files with 646 additions and 1 deletions
+13
View File
@@ -0,0 +1,13 @@
// debug: trace function execution
fn first[T](arr) {
let x = arr[0]
println(x)
return x
}
fn main() {
let nums = [10, 20, 30]
let x = first(nums)
println("main got: ${x}")
}