From d30df65656e2d498db497da74ada9a1d5a681f03 Mon Sep 17 00:00:00 2001 From: subrajeet-maharana Date: Tue, 28 Feb 2023 05:03:35 +0530 Subject: [PATCH] edited a typo in compiling with Make Section --- ch19_compile.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } ```