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

int x;
void main() {
	puts("HellO");
	puts("there");
	//printf("hello\n");
	exit(123);
	    
}