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

Merge pull request #594 from RobusGauli/patch-1

FIx typo in guide
This commit is contained in:
Dov Murik 2021-10-19 13:38:20 +03:00 committed by GitHub
commit 347471c125
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1001,7 +1001,7 @@ diff -urp ../process/step5_tco.txt ../process/step6_file.txt
(closed over from outside) as the second argument. The result of
the `EVAL` call is returned. This simple but powerful addition
allows your program to treat mal data as a mal program. For example,
you can now to this:
you can now do this:
```
(def! mal-prog (list + 1 2))
(eval mal-prog)