By the way, in case anyone is wondering what this is, it just means that you can use the FORMAT function to output Roman numbers.
(format t "~@r" 4) ;; => IV
(format t "~r" 4) ;; => four
(format t "The number is: ~d" 4) ;; => The number is: 4
By the way, in case anyone is wondering what this is, it just means that you can use the FORMAT function to output Roman numbers.
You can also do: and just interpolating the number would use "d":