Files
graphene/LibOS/shim/test/native/helloworld.c

10 lines
147 B
C

/* a simple helloworld test */
#include <stdio.h>
int main(int argc, char ** argv)
{
printf("Hello world (%s)!\n", argv[0]);
return 0;
}