ulisp-arm icon indicating copy to clipboard operation
ulisp-arm copied to clipboard

Extra quote in format statement causes odd behaviour

Open technoblogy opened this issue 1 year ago • 0 comments

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

technoblogy avatar Sep 20 '22 11:09 technoblogy