Files
lib_compiler/tests/import_libc2.txt
2024-04-13 15:29:53 +02:00

7 lines
108 B
Plaintext

import "libc";
main :: proc(): int {
a: *int = malloc(sizeof(:int));
defer free(a);
return 0;
}