Bit manipulation

This commit is contained in:
nub31
2025-09-09 16:15:40 +02:00
parent ab77588b72
commit 5fd4909f81
8 changed files with 272 additions and 132 deletions

View File

@@ -4,11 +4,19 @@ extern func puts(text: cstring)
func main(args: []cstring): i64
{
let x: u32 = 23
test(x)
if x == 23 && true
{
puts("yes")
}
else
{
puts("no")
}
return 0
}
func test(test: u32)
{
puts("test")
}