mirror of
https://github.com/atom/atom.git
synced 2026-02-16 01:25:13 -05:00
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;
|
|
}
|