This commit is contained in:
2026-05-19 12:35:23 +01:00
commit 9101eeefa0
5 changed files with 159 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
/*
@native @inline
@expr(say (&a: String) (b: i32) times)
fn say_something(&a: String, b: i32) -> Pack<String,i32> {
for index in 0..b {
a += a
}
return {a,b}
}
*/
println("where the huzz")