13 lines
144 B
Plaintext
13 lines
144 B
Plaintext
// c
|
|
extern func puts(text: cstring)
|
|
|
|
func main(args: []cstring): i64
|
|
{
|
|
let x: u32 = 23
|
|
test(x)
|
|
return 0
|
|
}
|
|
|
|
func test(test: u32)
|
|
{
|
|
} |