aboutsummaryrefslogtreecommitdiff
path: root/content/blog/2023-02-02-exploring-hare.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/2023-02-02-exploring-hare.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/2023-02-02-exploring-hare.md')
-rw-r--r--content/blog/2023-02-02-exploring-hare.md12
1 files changed, 6 insertions, 6 deletions
diff --git a/content/blog/2023-02-02-exploring-hare.md b/content/blog/2023-02-02-exploring-hare.md
index 1424aff..4368fdf 100644
--- a/content/blog/2023-02-02-exploring-hare.md
+++ b/content/blog/2023-02-02-exploring-hare.md
@@ -33,8 +33,8 @@ program.
## Installation
-I'm currently running Alpine Linux on my Thinkpad, so the installation was
-quite easy as there is a package for Hare in the `apk` repositories.
+I'm currently running Alpine Linux on my Thinkpad, so the installation was quite
+easy as there is a package for Hare in the `apk` repositories.
```sh
doas apk add hare hare-doc
@@ -132,8 +132,8 @@ hare build -o example file.ha
While I was able to piece everything together eventually, the biggest
downfall right now in Hare's documentation. For such a new project, the
- documentation is in a great spot. However, bare specifications don't help
- as much as a brief examples section would.
+ documentation is in a great spot. However, bare specifications don't help as
+ much as a brief examples section would.
For example, it took me a while to figure out what the `u64n` function was
looking for. I could tell that it took two parameters and the second was my
@@ -150,8 +150,8 @@ hare build -o example file.ha
enjoy seeing in Hare, such as one to convert decimal (base 10) values to
hexadecimal (base 16).
- If I'm feeling comfortable with my math, I may work on the list of
- functions I want and see if any can make it into the Hare source code.
+ If I'm feeling comfortable with my math, I may work on the list of functions
+ I want and see if any can make it into the Hare source code.
3. Overall Thoughts