Skip to main content
summaryrefslogtreecommitdiffstats
blob: e60a304291fff7091fe7a093b721de2c3dabb0c1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/*
 ============================================================================
 Name        : $(baseName).upc
 Author      : $(author)
 Version     :
 Copyright   : $(copyright)
 Description : UPC Hello world program
 ============================================================================
*/
#include <upc.h>

int main(int argc, char *argv[]) {
	printf("Hello, I am %d of %d.\n", MYTHREAD, THREADS);
	return 0;
}

Back to the top