From 0d7e5f1dc7c7ec02ee751badaff05b638ba3328d Mon Sep 17 00:00:00 2001 From: Ian Griffin Date: Thu, 27 Oct 2022 15:42:43 +0800 Subject: [PATCH] initial commit --- .gitignore | 2 ++ README.md | 2 ++ hello.c | 4 ++++ 3 files changed, 8 insertions(+) create mode 100644 .gitignore create mode 100644 README.md create mode 100644 hello.c diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a158ea5 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +a.out +hello diff --git a/README.md b/README.md new file mode 100644 index 0000000..0905668 --- /dev/null +++ b/README.md @@ -0,0 +1,2 @@ +# Hello, World +a copy of the world famous "hello, world" program, originally by Brian W. Kernighan of Bell Labs. diff --git a/hello.c b/hello.c new file mode 100644 index 0000000..eaab7bb --- /dev/null +++ b/hello.c @@ -0,0 +1,4 @@ +main() +{ + printf("hello, world\n"); +}