mirror of
https://github.com/clearlinux/graphene.git
synced 2026-09-06 13:51:28 +00:00
10 lines
149 B
C
10 lines
149 B
C
#include <stdio.h>
|
|
#include <unistd.h>
|
|
|
|
int main(int argc, char ** argv)
|
|
{
|
|
sleep(3);
|
|
printf("Hello world (%s)!\n", argv[0]);
|
|
return 0;
|
|
}
|