1
1
mirror of https://github.com/kanaka/mal.git synced 2024-08-17 01:30:26 +03:00

Merge pull request #595 from nathanKramer/patch-1

Fix typo in guide.md step 6
This commit is contained in:
Dov Murik 2021-10-23 17:51:46 +03:00 committed by GitHub
commit d638181537
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