From 502e9413227f5ff72541b54bf8de66d5ab8f2028 Mon Sep 17 00:00:00 2001 From: Dmitriy Dmitriev Date: Sat, 30 Oct 2021 22:16:58 +0300 Subject: [PATCH] Update FunCpp.md --- English/FunCpp.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/English/FunCpp.md b/English/FunCpp.md index b91ba60..b2529ff 100644 --- a/English/FunCpp.md +++ b/English/FunCpp.md @@ -1,4 +1,4 @@ -# C++ — It's Simple! +# C++ - It's Not Rocket Science Modern C++ is much simpler that it is thought to be. The language has changed a lot during all the years of transformation, and gained the capabilities that allow writing safe and effective code. No need to think about memory leaks when using the primitives of the latest standards. The compiler has also become much smarter. It can apply a tremendous amount of optimizations to your code, delivering the maximum performance. It is still possible to optimize the code by manual tweaks and tricks, though.