aboutsummaryrefslogtreecommitdiff
path: root/content/blog/2018-11-28-cpp-compiler.md
diff options
context:
space:
mode:
Diffstat (limited to 'content/blog/2018-11-28-cpp-compiler.md')
-rw-r--r--content/blog/2018-11-28-cpp-compiler.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/content/blog/2018-11-28-cpp-compiler.md b/content/blog/2018-11-28-cpp-compiler.md
index c0ce0b3..a7dce40 100644
--- a/content/blog/2018-11-28-cpp-compiler.md
+++ b/content/blog/2018-11-28-cpp-compiler.md
@@ -16,7 +16,7 @@ executed. There are many steps and intricacies to the compilation process, and
this post was a personal exercise to learn and remember as much information as I
can.
-``` cpp
+```cpp
#include <iostream>
int main()
@@ -76,7 +76,7 @@ dynamically.
For example, the `Hello, world!` code snippet above compiles into the following
assembly code:
-``` asm
+```asm
.LC0:
.string "Hello, world!\n"
main: