Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Yag000 authored Jul 23, 2023
1 parent dc9265d commit b7f54d5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ The Monkey language is a language created by Thorsten Ball for his book [Writing

Monkey-rs is an implementation of the Monkey language in Rust. It is based on the book [Writing an Interpreter in Go](https://interpreterbook.com/) and in the book [Writing a Compiler in Go](https://compilerbook.com/).

This implemenattion is still in development. For now an interpreter is fully implemented, allowing to run a REPL an to run Monkey files(`.monkey` extension). I am currently working on a compiler, and some features are already implemented.
This implemenattion is still in development. For now an interpreter is fully implemented, allowing to run a REPL and to run Monkey files (`.monkey` extension). I am currently working on a compiler, and some features are already implemented.

### REPL

Expand Down Expand Up @@ -132,7 +132,7 @@ Strings have the following built-in functions:

Arrays are sequences of values. They are written as follows:

```Monkey
```monkey
let a = [1, "two", [1,2,3]];
```

Expand Down

0 comments on commit b7f54d5

Please sign in to comment.