Skip to content

Instantly share code, notes, and snippets.

@y2q-actionman
Created April 14, 2022 10:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save y2q-actionman/cb5b0cd8b079940f9ff2585b410bbcdf to your computer and use it in GitHub Desktop.
Save y2q-actionman/cb5b0cd8b079940f9ff2585b410bbcdf to your computer and use it in GitHub Desktop.
Writing LTSV using 'format' of Common Lisp.
(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