Skip to content

Commit

Permalink
headers
Browse files Browse the repository at this point in the history
  • Loading branch information
krishpranav committed Oct 2, 2021
1 parent d4ce7a5 commit 76c11f1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion headers/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ void secondcallbackfunction()

void banner()
{
std::cout << "helloworld";
std::cout << "helloworld\n";
}


Expand Down
4 changes: 2 additions & 2 deletions headers/main.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ class myFirstClass
public:
void myfirsthelloworld()
{
std::cout << "first hello world";
std::cout << "first hello world\n";
};

void mysecondhelloworld()
{
std::cout << "second hello world";
std::cout << "second hello world\n";
};
};

Expand Down
Binary file not shown.

0 comments on commit 76c11f1

Please sign in to comment.