summaryrefslogtreecommitdiff
path: root/test.c
blob: ef5052897c2b9b057a8da9f78a55b1db26c1f70b (plain)
1
2
3
4
5
6
7
8
9
10
#include <stdio.h>
#include <stdlib.h>

int x;
void entry() {
	puts("Hello, world!");
	//printf("hello\n");
	exit(0);
	    
}