├── README.md ├── c └── helloworld.c └── php └── helloworld.php /README.md: -------------------------------------------------------------------------------- 1 | # example_repo 2 | An example repo for learning purposes 3 | # Add Your username 4 | Edit this file to add your Github username here: 5 | 1. kerri-leigh 6 | 2. anonymous 7 | 3. 8 | -------------------------------------------------------------------------------- /c/helloworld.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int main() { 4 | printf("Hello, git user!\n"); 5 | return 1; 6 | } 7 | -------------------------------------------------------------------------------- /php/helloworld.php: -------------------------------------------------------------------------------- 1 | Hello, git user!

'; 5 | include('pageFooter.php'); 6 | --------------------------------------------------------------------------------