summaryrefslogtreecommitdiff
path: root/hello.c
diff options
context:
space:
mode:
authorAndrew Guschin <guschin@altlinux.org>2024-02-19 20:44:55 +0400
committerAndrew Guschin <guschin@altlinux.org>2024-02-19 20:44:55 +0400
commit8300860bdc3af55dcc6dee56c4963bb5e8f274ec (patch)
tree056ec80dd00e86399c0f601340ae9c3f79a1e7c8 /hello.c
initial commitHEADmaster
Diffstat (limited to 'hello.c')
-rw-r--r--hello.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/hello.c b/hello.c
new file mode 100644
index 0000000..d7ffcbc
--- /dev/null
+++ b/hello.c
@@ -0,0 +1,5 @@
+#include <stdio.h>
+
+int main() {
+ puts("Hello, world\n");
+}