diff options
Diffstat (limited to 'lua/plugins/test.c')
| -rw-r--r-- | lua/plugins/test.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/lua/plugins/test.c b/lua/plugins/test.c new file mode 100644 index 0000000..57028aa --- /dev/null +++ b/lua/plugins/test.c @@ -0,0 +1,12 @@ +#include <stdio.h> + +int main() +{ + int x = 5; + printf("Hello World!\n"); + + while(1){ + printf("Hello World!\n"); + } + +} |
