jscl-project / jscl

A Lisp-to-JavaScript compiler bootstrapped from Common Lisp

Home Page:https://jscl-project.github.io

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Another format

vlad-km opened this issue · comments

commented

(format t "")
=> nil

(format nil "")
=> ""

(format t "<#aaa>")
=> <#aaa>

the third one is not true. It prints <#aaa> but it returns NIL, as the first one:

screenshot from 2017-07-12 17-06-18

so I think this is the desired result.

commented

Yes, I did not correctly use the local message editor.
Sorry.
It must be so:

(format t "<aaa>")
=> nil
(format nil "<aaa>")
=> "<aaa>"
(format t "<#aaa>")
=> <#aaa>

It is rather a feature I/O,
format-exampl
not an error.

No problem. Can I close it this issue then?

commented

Yes, of course.