Skip to content

Commit

Permalink
Update formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
sonnynomnom committed Mar 1, 2019
1 parent 9208c9c commit d7f60d3
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 3 deletions.
2 changes: 2 additions & 0 deletions 1-hello-world/block-letters/codecademy.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
#include <iostream>

int main() {

std::cout << " __________________ \n";
std::cout << " | |______________| | \n";
std::cout << " | | | | \n";
Expand All @@ -21,4 +22,5 @@ int main() {
std::cout << " |__________________| ========== \n";

return 0;

}
2 changes: 2 additions & 0 deletions 1-hello-world/block-letters/initials.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
#include <iostream>

int main() {

std::cout << " SSS L \n";
std::cout << " S S L \n";
std::cout << " S L \n";
Expand All @@ -13,4 +14,5 @@ int main() {
std::cout << " SSS LLLLL \n";

return 0;

}
3 changes: 3 additions & 0 deletions 1-hello-world/block-letters/snowman.cpp
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
// Fun Fact: I drink a looot of water.
// Twitter: @anne_melody

#include <iostream>

int main() {

std::cout << " * * \n";
std::cout << "* * \n";
std::cout << " * * * \n";
Expand All @@ -25,4 +27,5 @@ int main() {
std::cout << " * * * \n";

return 0;

}
2 changes: 2 additions & 0 deletions 1-hello-world/hello.cpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
#include <iostream>

int main() {

std::cout << "Hello World!\n";

return 0;

}
6 changes: 4 additions & 2 deletions 1-hello-world/letter.cpp
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
#include <iostream>

int main() {

std::cout << "Dear Self, \n";
std::cout << " \n";
std::cout << "I will build a VR app.\n";
std::cout << " \n";
std::cout << " - Sonny\n";

return 0;
}

}
4 changes: 3 additions & 1 deletion 1-hello-world/pattern.cpp
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
#include <iostream>

int main() {

std::cout << " 1\n";
std::cout << " 2 3\n";
std::cout << " 4 5 6\n";
std::cout << "7 8 9 10\n";

return 0;

}
2 changes: 2 additions & 0 deletions 1-hello-world/spell.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@
#include <iostream>

int main() {

std::cout << "Expecto Patronum\n";

return 0;

}

0 comments on commit d7f60d3

Please sign in to comment.