aboutsummaryrefslogtreecommitdiff
path: root/content/blog/2018-11-28-cpp-compiler.md
diff options
context:
space:
mode:
authorChristian Cleberg <hello@cleberg.net>2024-05-01 21:45:52 -0500
committerChristian Cleberg <hello@cleberg.net>2024-05-01 21:45:52 -0500
commitdc1261d703ae1e1a14841b030888e3f87ff7c38f (patch)
tree71139c9021b09704b2d45be3b64d54e2acbae55f /content/blog/2018-11-28-cpp-compiler.md
parentba6b552c8256cc2e071c910ef7821c82443f1f82 (diff)
downloadcleberg.net-dc1261d703ae1e1a14841b030888e3f87ff7c38f.tar.gz
cleberg.net-dc1261d703ae1e1a14841b030888e3f87ff7c38f.tar.bz2
cleberg.net-dc1261d703ae1e1a14841b030888e3f87ff7c38f.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: