Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -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++.
Expand All @@ -16,4 +18,4 @@ docker run -v "$(pwd)":/usr/src -it cpp-container

```
docker run -v "$(pwd)":/usr/src -it cpp-container sh
```
```
4 changes: 2 additions & 2 deletions main.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#include <iostream>

int main(){
std::cout<<"Hello World!\n";
std::cout<<"Hello Worlds!\n";
return 0;
}
}