initial commit

This commit is contained in:
Ian Griffin 2022-10-27 15:42:43 +08:00
commit 0d7e5f1dc7
3 changed files with 8 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
a.out
hello

2
README.md Normal file
View File

@ -0,0 +1,2 @@
# Hello, World
a copy of the world famous "hello, world" program, originally by Brian W. Kernighan of Bell Labs.

4
hello.c Normal file
View File

@ -0,0 +1,4 @@
main()
{
printf("hello, world\n");
}