commit 0d7e5f1dc7c7ec02ee751badaff05b638ba3328d Author: Ian Griffin Date: Thu Oct 27 15:42:43 2022 +0800 initial commit 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"); +}