summaryrefslogtreecommitdiff
path: root/lua/plugins/test.c
diff options
context:
space:
mode:
authorbh <qn+git@excalibur.computer>2025-11-12 23:57:20 +0800
committerbh <qn+git@excalibur.computer>2025-11-12 23:57:20 +0800
commitcc5ca2e8c8fa3cf2e60321fdb0cb4ddb66551ff2 (patch)
treef6173f63d1bd48710728817bd338838654ec60de /lua/plugins/test.c
Initial Commit
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");
+ }
+
+}