aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorc2023-12-26 18:41:52 -0500
committerc2023-12-26 18:41:52 -0500
commitc71b98b5b4d14cf30602064d7041828ba8244372 (patch)
treead431e75d502d1bb4f344ced8d5142491057dfc5 /README.md
parente39267c83a8af189a624891813ebd6014543b01a (diff)
Filled in tests for tree_cmp.
Diffstat (limited to 'README.md')
-rw-r--r--README.md16
1 files changed, 9 insertions, 7 deletions
diff --git a/README.md b/README.md
index e461093..be3fdb6 100644
--- a/README.md
+++ b/README.md
@@ -12,7 +12,8 @@ If you wish to remove all HALK-related items from your life, you can try
$ sudo make uninstall
```
-As of `82e7599`, HALK has been tested on both Linux and MacOS.
+`test` and `dbg` targets also exist.
+HALK should build properly on unix-like systems with gcc installed.
# Usage
@@ -22,9 +23,9 @@ One must simply
$ halk examples/simple.halk
```
-. This will print out the token and AST representations of the given text. Running HALK
-without an argument allows one to pass in text through stdin. An example session is transcribed
-below:
+. This will print out the token and AST representations of the given text.
+Running HALK without an argument allows one to pass in text through stdin. An
+example session is transcribed below:
```
$ halk
@@ -75,9 +76,10 @@ nxt:
# About
-HALK is a **dubiously-typed**, **vaguely-functional**, **interpreted** programming language,
-with syntax designed to be as **minimal** and **consistent** as possible. Note that all syntax
-described is liable to sudden and violent change.
+HALK is a **dubiously-typed**, **vaguely-functional**, **interpreted**
+programming language, with syntax designed to be as **minimal** and
+**consistent** as possible. Note that all syntax described is liable to sudden
+and violent change.
Example programs can be found in the examples directory.