opt: add some c

This commit is contained in:
K. Lange 2018-10-12 16:00:20 +09:00
parent b5b2efd8da
commit 97555916fa
1 changed files with 6 additions and 0 deletions

6
base/opt/test.c Normal file
View File

@ -0,0 +1,6 @@
#include <stdio.h>
int main(int argc, char * argv[]) {
fprintf(stdout, "Hello, %s!\n", "world");
return 0;
}