mirror of https://github.com/nodejs/node.git
10 lines
136 B
C
10 lines
136 B
C
|
#include <stdio.h>
|
||
|
|
||
|
#include "lib/shared.h"
|
||
|
|
||
|
int main(int argc, char *argv[])
|
||
|
{
|
||
|
printf("Hello from %s.\n", kSharedStr);
|
||
|
return 0;
|
||
|
}
|