From 2d74950cf107daa391dba6f483a390e57c60dd0b Mon Sep 17 00:00:00 2001 From: s1n Date: Wed, 27 Nov 2019 22:57:39 -0800 Subject: Add files via upload --- cpp-hello-world/README.md | 69 ++++++++++++++++++++++++++++++++++++++++++++ cpp-hello-world/src/main.cpp | 6 ++++ 2 files changed, 75 insertions(+) create mode 100644 cpp-hello-world/README.md create mode 100644 cpp-hello-world/src/main.cpp (limited to 'cpp-hello-world') diff --git a/cpp-hello-world/README.md b/cpp-hello-world/README.md new file mode 100644 index 0000000..bab4355 --- /dev/null +++ b/cpp-hello-world/README.md @@ -0,0 +1,69 @@ + +## About The Project + +"Hello World!" in C++. + +[Example](https://repl.it/@s1n/cpp-hello-world) + + + + +## Getting Started + +[Clone or download](https://github.com/8cy/cpp-hello-world) the project and run in your favourite choice of [IDE](https://en.wikipedia.org/wiki/IDE) or [Text Editor](https://en.wikipedia.org/wiki/Text_editor) with a Code Runner. + +> *[Code Runner](https://marketplace.visualstudio.com/items?itemName=formulahendry.code-runner) by [Jun Han](https://marketplace.visualstudio.com/publishers/formulahendry) on the [VSCode Marketplace](https://marketplace.visualstudio.com/) is my Code Runner of choice but you can feel free to use anything that works for you.* + +### Prerequisites + +This is an example of how to list things you need to use the software and how to install them. +* Your favourite C++ Compiler + + + + +## Contributing + +Contributions are what make the open source community such an amazing place to be learn, inspire, and create. Any contributions you make are **greatly appreciated**. + +1. Fork the Project +2. Create your Feature Branch (`git checkout -b feature/AmazingFeature`) +3. Commit your Changes (`git commit -m 'Add some AmazingFeature'`) +4. Push to the Branch (`git push origin feature/AmazingFeature`) +5. Open a Pull Request + + + + +## License + +Distributed under the MIT License. See [`LICENSE`](/LICENSE) for more information. + + + + +## Contact + +s1nical - [@s1nical](https://twitter.com/s1nical) - bis@s1n.pw + +Project Link: [https://github.com/8cy/cpp-hello-world](https://github.com/8cy/cpp-hello-world) + + + + + + + +[contributors-shield]: https://img.shields.io/github/contributors/othneildrew/Best-README-Template.svg?style=flat-square +[contributors-url]: https://github.com/othneildrew/Best-README-Template/graphs/contributors +[forks-shield]: https://img.shields.io/github/forks/othneildrew/Best-README-Template.svg?style=flat-square +[forks-url]: https://github.com/othneildrew/Best-README-Template/network/members +[stars-shield]: https://img.shields.io/github/stars/othneildrew/Best-README-Template.svg?style=flat-square +[stars-url]: https://github.com/othneildrew/Best-README-Template/stargazers +[issues-shield]: https://img.shields.io/github/issues/othneildrew/Best-README-Template.svg?style=flat-square +[issues-url]: https://github.com/othneildrew/Best-README-Template/issues +[license-shield]: https://img.shields.io/github/license/othneildrew/Best-README-Template.svg?style=flat-square +[license-url]: https://github.com/othneildrew/Best-README-Template/blob/master/LICENSE.txt +[linkedin-shield]: https://img.shields.io/badge/-LinkedIn-black.svg?style=flat-square&logo=linkedin&colorB=555 +[linkedin-url]: https://linkedin.com/in/othneildrew +[product-screenshot]: images/screenshot.png diff --git a/cpp-hello-world/src/main.cpp b/cpp-hello-world/src/main.cpp new file mode 100644 index 0000000..769877e --- /dev/null +++ b/cpp-hello-world/src/main.cpp @@ -0,0 +1,6 @@ +#include +using namespace std; + +int main() { + std::cout << "Hello, World!" << std::endl; +} -- cgit v1.2.3