mirror of
https://github.com/clearlinux/graphene.git
synced 2026-08-22 05:56:23 +00:00
9 lines
146 B
C
9 lines
146 B
C
/* a simple helloworld test */
|
|
|
|
#include <stdio.h>
|
|
|
|
int main(int argc, char** argv) {
|
|
printf("Hello world (%s)!\n", argv[0]);
|
|
return 0;
|
|
}
|