aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorc+12023-05-05 18:03:45 -0400
committerc+12023-05-05 18:03:45 -0400
commit8918059339439de945c3bbc301e04ec6ce804b7c (patch)
tree518b0ccd9f22ead6049cd79ff8fef2709544423e
parent063c5192adc7f8d1231b7d824408439cb2bc13a7 (diff)
read me dot em dee
-rw-r--r--README.md18
1 files changed, 12 insertions, 6 deletions
diff --git a/README.md b/README.md
index de9f885..2e0739f 100644
--- a/README.md
+++ b/README.md
@@ -33,15 +33,21 @@ Note that all syntax described is liable to sudden and violent change.
```HALK
let variable = 4;
-let another_variable = "Hello, World!";
+let another_variable = "Hello, World!\n";
-fn main /
- for variable > 0 /
+fn main {
+ while variable >= 0 {
say another_variable;
variable -= 1;
- \
- say "done.";
-\
+ }
+ say "done.\n";
+}
```
+>Hello, World!
+>Hello, World!
+>Hello, World!
+>Hello, World!
+>done.
+
***HALK*** **progress:** 10%