7 lines
92 B
Plaintext
7 lines
92 B
Plaintext
main :: proc(): int {
|
|
a: *int;
|
|
if a == nil {
|
|
return 0;
|
|
}
|
|
return 1;
|
|
} |