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

int my_number;
void entry() {
	my_number = 137;
	printf("%d\n",my_number);
	exit(0);
	    
}