ELFIO/tests/elf_examples/hello.c
2020-08-09 22:43:30 -07:00

9 lines
75 B
C

#include <stdio.h>
int main()
{
printf( "Hello\n" );
return 0;
}