Source of Nothingness - xyzzy lisp : format ~$

* xyzzy lisp : format ~$


(format nil "~10,4,30$" +123.45)
"               0123.4500000000"
(format nil "~10,4,30@$" +123.45)
"              +0123.4500000000"
(format nil "~10,4,30:$" +123.45)
"               0123.4500000000"
(format nil "~10,4,30:@$" +123.45)
"+              0123.4500000000"
(format nil "~10,4,30,'*$" +123.45)
"***************0123.4500000000"

update : 2006-11-14 (Tue) 12:45:10