Bit manipulation
This commit is contained in:
@@ -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")
|
||||
}
|
||||
Reference in New Issue
Block a user