diff --git a/README.md b/README.md index 4966234..6bfd017 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,5 @@ +[![Build C++](https://github.com/Cowpriest/HelloWorld/actions/workflows/helloworld.yml/badge.svg)](https://github.com/Cowpriest/HelloWorld/actions/workflows/helloworld.yml) + # Hello World This program demonstrates printing `Hello World` to the command line in C++. @@ -16,4 +18,4 @@ docker run -v "$(pwd)":/usr/src -it cpp-container ``` docker run -v "$(pwd)":/usr/src -it cpp-container sh -``` \ No newline at end of file +``` diff --git a/main.cpp b/main.cpp index b22f491..3c53887 100644 --- a/main.cpp +++ b/main.cpp @@ -1,6 +1,6 @@ #include int main(){ - std::cout<<"Hello World!\n"; + std::cout<<"Hello Worlds!\n"; return 0; -} \ No newline at end of file +}