summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/latex/codebox/test.c
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/doc/latex/codebox/test.c')
-rw-r--r--Master/texmf-dist/doc/latex/codebox/test.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/latex/codebox/test.c b/Master/texmf-dist/doc/latex/codebox/test.c
new file mode 100644
index 00000000000..398d2d12bfa
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/codebox/test.c
@@ -0,0 +1,9 @@
+#include <stdio.h>
+#include <stdlib.h>
+
+int main(void)
+{
+ printf("Hello World!\n");
+
+ return 0;
+}