From: Bryan O'Sullivan <mpm@selenic.com>
Date: Fri, 26 Aug 2005 08:20:50 +0000 (-0700)
Subject: Create a standard "hello, world" program
X-Git-Url: https://git.cworth.org/git?a=commitdiff_plain;h=db7117a9dd9a6e57e8632ea5848e1101eee0fbde;p=hello

Create a standard "hello, world" program
---

db7117a9dd9a6e57e8632ea5848e1101eee0fbde
diff --git a/hello.c b/hello.c
new file mode 100644
index 0000000..ed55ec0
--- /dev/null
+++ b/hello.c
@@ -0,0 +1,16 @@
+/*
+ * hello.c
+ *
+ * Placed in the public domain by Bryan O'Sullivan
+ *
+ * This program is not covered by patents in the United States or other
+ * countries.
+ */
+
+#include <stdio.h>
+
+int main(int argc, char **argv)
+{
+	printf("hello, world!\n");
+	return 0;
+}