summaryrefslogtreecommitdiff
path: root/exercism/emacs-lisp/two-fer/two-fer.el
blob: dda2502e421c4cda5f8e6f9f5d7a664892e46a68 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
;;; two-fer.el --- Two-fer Exercise (exercism)

;;; Commentary:

;;; Code:

(defun two-fer (&optional name)
  "Display a message for NAME."
  (or name (setq name "you"))
  (format "One for %s, one for me." name))

(provide 'two-fer)
;;; two-fer.el ends here