diff options
Diffstat (limited to 'core/print.c')
| -rw-r--r-- | core/print.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/core/print.c b/core/print.c new file mode 100644 index 0000000..f0134b9 --- /dev/null +++ b/core/print.c @@ -0,0 +1,7 @@ +#include "../lib/io/io.h" + +int main(int argc, char **argv) +{ + for (int i = 1; i < argc; ++i) wstdf("%s ", argv[i]); + wstd("\n"); +} |