C++程序  |  8行  |  92 B

extern void test();

extern int puts(const char *);

void test() {
  puts("hello world");
}