7 lines
108 B
Plaintext
7 lines
108 B
Plaintext
import "libc";
|
|
|
|
main :: proc(): int {
|
|
a: *int = malloc(sizeof(:int));
|
|
defer free(a);
|
|
return 0;
|
|
} |