summaryrefslogtreecommitdiff
path: root/lua/plugins/test.c
diff options
context:
space:
mode:
Diffstat (limited to 'lua/plugins/test.c')
-rw-r--r--lua/plugins/test.c12
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");
+ }
+
+}