zig/test/link/dylib/main.c

10 lines
119 B
C

#include <stdio.h>
char* hello();
extern char world[];
int main() {
printf("%s %s", hello(), world);
return 0;
}