mirror of
https://github.com/ziglang/zig.git
synced 2026-01-09 17:05:16 +00:00
10 lines
119 B
C
10 lines
119 B
C
#include <stdio.h>
|
|
|
|
char* hello();
|
|
extern char world[];
|
|
|
|
int main() {
|
|
printf("%s %s", hello(), world);
|
|
return 0;
|
|
}
|