diff --git a/README.md b/README.md index efebf033..6564fd71 100644 --- a/README.md +++ b/README.md @@ -3,6 +3,7 @@ GitHub Example This is a simple example repository that will be used to show how to get started with GitHub. + How to Contribute ================= diff --git a/hello.c b/hello.c new file mode 100644 index 00000000..e18000ae --- /dev/null +++ b/hello.c @@ -0,0 +1,7 @@ +#include +int main() +{ + printf("hello github"); + + return 0; +}