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

Update guide.md

Fix typo from `to` to `do`
This commit is contained in:
Robus Gauli 2021-10-17 07:41:03 +05:45 committed by GitHub
parent 1c76e857f8
commit 2a0af17d4d
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)