aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md4
1 files changed, 1 insertions, 3 deletions
diff --git a/README.md b/README.md
index 00eafdd..f92c256 100644
--- a/README.md
+++ b/README.md
@@ -3,8 +3,6 @@
Sjit is a stupid just in time compiler.
It does almost nothing, and what it does, it does badly and is not useful.
-- There is no parser, you have to write your program in the internal Clean
- representation (see `Start` in [`sjit.icl`](/sjit.icl)).
- There is no type checker, you have to guess the implicit rules.
- There is no register allocation, everything is done on the stack.
- There is no code optimisation, not even to eliminate `push rbx` followed by
@@ -18,7 +16,7 @@ It does almost nothing, and what it does, it does badly and is not useful.
git clone https://gitlab.science.ru.nl/cstaps/sjit-compiler
cd sjit-compiler
make
-./sjit
+./isjit
```
## Colophon