summary refs log tree commit diff stats
path: root/emacs-lisp/two-fer/two-fer.el
blob: 3c3620dc837fea5317d5e7f7e9e503d6c671abe9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
;;; two-fer.el --- Two-fer Exercise (exercism)

;;; Commentary:

;;; Code:

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

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