Files
Dmitrii Kuvaiskii ef5259a86f [Docs,LibOS] Move helloworld example from native/ to regression/
Applications under native/ cannot be run after commit "Introduce one,
central manifest, zero-config children and constant MRENCLAVE". Instead
of fixing native/, this commit simply moves helloworld and all its
mentions under regression/.
2021-01-16 12:38:29 -08:00

7 lines
100 B
C

#include <stdio.h>
int main(int argc, char** argv) {
printf("Hello world!\n");
return 0;
}