summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md17
1 files changed, 14 insertions, 3 deletions
diff --git a/README.md b/README.md
index c9d2c13..aadbfdc 100644
--- a/README.md
+++ b/README.md
@@ -1,7 +1,18 @@
-# gorth - go forth
-Simple [forth](https://www.forth.com/forth) compiler implementation written in go.
+# ash
+A Simple stack based programming language inspired by [forth](https://www.forth.com/forth) and posix shell syntax.
## Building
``` bash
-go build -o gorth ./src
+make
```
+## Installing
+``` bash
+make install
+```
+
+## Dependencies
+* [nasm](https://www.nasm.us/)
+* ld
+
+## OS
+ash only supports linux.