ç´ æµãªæç Common Lisp ã®ç´ æµãªæçã§ãã æ°å¤ã®ã³ã³ãç·¨é (format nil "~:D" 1000000) ;; ==> "1,000,000" æ¨æºåºåãæç¸ãã (with-output-to-string (*standard-output*) (write-string "Hello ") (format t "~{~a~^, ~}" '(1 2 3))) ;; ==> "Hello 1, 2, 3" ã¢ããã©ãªãã¯ãã¯ã Anaphora ããæç²ããã¯ããå®ç¾©ãããã¯ããit ãäºç´èªã§ãããã®ããã«ä½¿ãã (defmacro anaphoric (op test &body body) `(let ((it ,test)) (,op it ,@body))) (defmacro aif (test then &optional else) `(anapho
{{#tags}}- {{label}}
{{/tags}}