summaryrefslogtreecommitdiff
path: root/examples/hello_scripts/main.c
blob: 9e85a3206e684ad51726a7a670fb946b7153a79e (plain)
1
2
3
4
5
6
7
8
9
#include <stdio.h>

extern const char *msg;

int main (int argc, char **argv)
{
	puts (msg);
	return 0;
}