aboutsummaryrefslogtreecommitdiff
path: root/content/blog/2018-11-28-cpp-compiler.md
diff options
context:
space:
mode:
authorChristian Cleberg <[email protected]>2024-05-01 21:45:52 -0500
committerChristian Cleberg <[email protected]>2024-05-01 21:45:52 -0500
commit7d3b5175f2d9d016b06190273fcfeb380a460b3f (patch)
tree71139c9021b09704b2d45be3b64d54e2acbae55f /content/blog/2018-11-28-cpp-compiler.md
parent7c70a351e25106ceff49ff8ee0a38e2a545f62f0 (diff)
downloadcleberg.net-7d3b5175f2d9d016b06190273fcfeb380a460b3f.tar.gz
cleberg.net-7d3b5175f2d9d016b06190273fcfeb380a460b3f.tar.bz2
cleberg.net-7d3b5175f2d9d016b06190273fcfeb380a460b3f.zip
prettier formatting and rewrap lines
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: