diff options
Diffstat (limited to 'userspace/snake.c')
| -rw-r--r-- | userspace/snake.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/userspace/snake.c b/userspace/snake.c new file mode 100644 index 0000000..afc6bf8 --- /dev/null +++ b/userspace/snake.c @@ -0,0 +1,11 @@ +#include <stdio.h> + +int main() +{ + printf("Hello I am FoolSnake 0.1\n"); + + while(1) + { + printf("%c",getc(stdin)); + } +} |
