Source of Nothingness - xyzzy lisp : format ~P

* xyzzy lisp : format ~P

(format nil "cat~P" 1)
"cat"
(format nil "cat~P" 2)
"cats"
(format nil "~R cat~:P" 1)
"one cat"
(format nil "~R cat~:P" 2)
"two cats"
(format nil "cand~@P" 1)
"candy"
(format nil "cand~@P" 2)
"candies"

update : 2006-07-11 (Tue) 12:40:23