Skip to content

Instantly share code, notes, and snippets.

@juan-reynoso
Created September 28, 2021 15:10
Show Gist options
  • Save juan-reynoso/f5f881fc39b69d171741cd3b459f82e4 to your computer and use it in GitHub Desktop.
Save juan-reynoso/f5f881fc39b69d171741cd3b459f82e4 to your computer and use it in GitHub Desktop.
Returns a string which is the weekday
(defun get-long-weekday-from-timestamp (&key (timestamp (now)))
"Returns a string which is the weekday."
(let ((long-weekday (format-timestring nil
timestamp
:format '(:long-weekday))))
long-weekday))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment