From 97555916fa9f803572116f641ade2b06814a458f Mon Sep 17 00:00:00 2001 From: "K. Lange" Date: Fri, 12 Oct 2018 16:00:20 +0900 Subject: [PATCH] opt: add some c --- base/opt/test.c | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 base/opt/test.c diff --git a/base/opt/test.c b/base/opt/test.c new file mode 100644 index 00000000..c3e8d5c6 --- /dev/null +++ b/base/opt/test.c @@ -0,0 +1,6 @@ +#include + +int main(int argc, char * argv[]) { + fprintf(stdout, "Hello, %s!\n", "world"); + return 0; +}