mirror of https://github.com/nodejs/node.git
9 lines
126 B
C
9 lines
126 B
C
|
#include <stdio.h>
|
||
|
|
||
|
const char *message(void);
|
||
|
|
||
|
int main(int argc, char *argv[]) {
|
||
|
printf("%s\n", message());
|
||
|
return 0;
|
||
|
}
|