technoblogy / ulisp-arm

A version of the Lisp programming language for ARM-based boards.
http://www.ulisp.com/
MIT License
106 stars 30 forks source link

Extra quote in format statement causes odd behaviour #53

Open technoblogy opened 2 years ago

technoblogy commented 2 years ago

For example:

> (format t "~5,''0g" 3.14158)
'''''''''''''''''''''''''''''''''''''''''''3.14158
nil

Should give something like:

> (format t "~5,''0g" 3.14158)

  "~5,''0g"
        ^
Error: 'format' command '~0' not valid