diff --git a/ch19_compile.md b/ch19_compile.md index d25390d..67640e5 100644 --- a/ch19_compile.md +++ b/ch19_compile.md @@ -63,7 +63,7 @@ Let's use the makefile to compile a basic `.cpp` program. First, let's create a #include int main() { - std::cout << "Hello!\\n"; + std::cout << "Hello!\n"; return 0; } ```