1
1
mirror of https://github.com/kanaka/mal.git synced 2024-08-17 09:40:21 +03:00

Fix typo in guide.md step 6

This commit is contained in:
Nathan Kramer 2021-10-23 16:45:46 +11:00 committed by GitHub
parent 347471c125
commit e2707fd91a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -996,7 +996,7 @@ diff -urp ../process/step5_tco.txt ../process/step6_file.txt
* In your main program, add a new symbol "eval" to your REPL
environment. The value of this new entry is a function that takes
a single argument `ast`. The closure calls the your `EVAL` function
a single argument `ast`. The closure calls your `EVAL` function
using the `ast` as the first argument and the REPL environment
(closed over from outside) as the second argument. The result of
the `EVAL` call is returned. This simple but powerful addition