This commit is contained in:
nub31
2025-07-03 00:49:16 +02:00
parent e7aa16183a
commit 2159a731dd
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
}