This commit is contained in:
nub31
2025-07-03 00:49:16 +02:00
parent 9f40d8a9c9
commit f79e6750f6
5 changed files with 119 additions and 239 deletions

View File

@@ -8,7 +8,18 @@ struct Human
export func main(args: []cstring): i64
{
c::puts("john")
let x: i64
x = 23
if (x == 23)
{
c::printf("true\n")
}
else
{
c::printf("false\n")
}
return 0
}