aboutsummaryrefslogtreecommitdiff
path: root/README.md
blob: 2e0739f6566d046b26c78b9baa7210a2d13d0c24 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# HALK

*HALK* seeks to be a language.

I seek to fulfill its wishes.

As of yet, *HALK* is nothing.

As of yet, we are safe.

# Installation

As you have read these words, you are to install *HALK*.

1. Clone *HALK* to a computer.
2. `sudo make install`.
3. Congratulations; You are now part of The.

There is no turning back now.

# Usage

Seeing as you have installed *HALK*, it only makes sense that you should attempt to make use of it.
You are mistaken.
Usage of *HALK* is not yet a feature of *HALK*.
One can only hope this feature will be added in the future.


# Syntax

*HALK* is a **dubiously-typed**, **procedural** programming language. 
Note that all syntax described is liable to sudden and violent change.

```HALK
let variable = 4;
let another_variable = "Hello, World!\n";

fn main {
   while variable >= 0 {
      say another_variable;
      variable -= 1;
   }
   say "done.\n";
}
```

>Hello, World!
>Hello, World!
>Hello, World!
>Hello, World!
>done.

***HALK*** **progress:** 10%