Source of Nothingness - xyzzy lisp : format ~*

* xyzzy lisp : format ~*

(format nil "~A ~A ~*~A ~A ~A" 'a 'b 'c 'd 'e 'f)
"a b d e f"
(format nil "~A ~A ~2*~A ~A" 'a 'b 'c 'd 'e 'f)
"a b e f"
(format nil "~A ~A ~A ~2:*~A ~A ~A ~A" 'a 'b 'c 'd 'e 'f)
"a b c b c d e"
(format nil "~A ~A ~4@*~A ~A" 'a 'b 'c 'd 'e 'f)
"a b e f"

update : 2006-07-25 (Tue) 12:59:25