string fix

This commit is contained in:
nub31
2025-09-12 23:13:48 +02:00
parent 7716c84dd9
commit 55f434419a
3 changed files with 6 additions and 7 deletions

View File

@@ -9,12 +9,10 @@ export struct Human
extern "main" func main(args: []cstring): i64
{
let x = [1]Human
let x: cstring = "test"
x[0] = {
name = "oliver"
}
x = x + "uwu"
puts(x[0].name)
puts(x)
return 0
}