Created
April 14, 2022 10:32
-
-
Save y2q-actionman/cb5b0cd8b079940f9ff2585b410bbcdf to your computer and use it in GitHub Desktop.
Writing LTSV using 'format' of Common Lisp.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(format t "~:{~A:~S~:^ ~}" | |
'((:foo "100") (:bar "200") (:baz 9999))) ; Using a list of lists, not an alist. | |
; => FOO:"100" BAR:"200" BAZ:9999 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment