mirror of
https://github.com/justinethier/cyclone.git
synced 2025-05-19 05:39:17 +02:00
Missing parenthesis in let*
This commit is contained in:
parent
3d31f7ce63
commit
658317f9a9
1 changed files with 1 additions and 1 deletions
2
icyc.scm
2
icyc.scm
|
@ -94,7 +94,7 @@ Options:
|
||||||
(else
|
(else
|
||||||
(let* ((sexp-str (apply string-append sexp-strs))
|
(let* ((sexp-str (apply string-append sexp-strs))
|
||||||
(in-port (open-input-string sexp-str))
|
(in-port (open-input-string sexp-str))
|
||||||
(sexp (cons 'begin (read-all in-port)))
|
(sexp (cons 'begin (read-all in-port))))
|
||||||
(display
|
(display
|
||||||
(eval sexp))
|
(eval sexp))
|
||||||
(newline)
|
(newline)
|
||||||
|
|
Loading…
Add table
Reference in a new issue