summaryrefslogtreecommitdiff
path: root/trivionomicon/templates/system-flake/pkgs/hello-world/hello-world.c
diff options
context:
space:
mode:
Diffstat (limited to 'trivionomicon/templates/system-flake/pkgs/hello-world/hello-world.c')
-rw-r--r--trivionomicon/templates/system-flake/pkgs/hello-world/hello-world.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/trivionomicon/templates/system-flake/pkgs/hello-world/hello-world.c b/trivionomicon/templates/system-flake/pkgs/hello-world/hello-world.c
new file mode 100644
index 0000000..d6cfa6b
--- /dev/null
+++ b/trivionomicon/templates/system-flake/pkgs/hello-world/hello-world.c
@@ -0,0 +1,7 @@
+#include <stdio.h>
+
+int main()
+{
+ printf("Hello, world!\n");
+ return 0;
+}