mirror of
https://github.com/clearlinux/graphene.git
synced 2026-09-03 20:31:40 +00:00
7 lines
115 B
C
7 lines
115 B
C
#include <stdio.h>
|
|
|
|
int main(int argc, char* argv[]) {
|
|
printf("Hello world (%s)!\n", argv[0]);
|
|
return 0;
|
|
}
|