Isoraqathedh

format

Dec 22nd, 2015
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lisp 0.38 KB | None | 0 0
  1. CL-USER> (format t "~a~%~a~%~a~%~a~%~a"
  2.                  1 "abc\"de"
  3.                  :a-keyword-symbol-|with escapes|
  4.                  (list 20 50 (make-hash-table))
  5.                  (vector 'normal-symbol "üŋicoðə"))
  6. ; Prints:
  7. ; 1
  8. ; abc"de
  9. ; A-KEYWORD-SYMBOL-with escapes
  10. ; (20 50 #<HASH-TABLE :TEST EQL :COUNT 0 {100365E473}>)
  11. ; #(NORMAL-SYMBOL üŋicoðə)
  12. ; Returns:
  13. NIL
Advertisement
Add Comment
Please, Sign In to add comment