RosettaCodeData/Task/Date-format/Emacs-Lisp/date-format.l

7 lines
169 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
(format-time-string "%Y-%m-%d")
(format-time-string "%F") ;; new in Emacs 24
;; => "2015-11-08"
(format-time-string "%A, %B %e, %Y")
;; => "Sunday, November 8, 2015"