summary refs log blame commit diff stats
path: root/emacs-lisp/hello-world/hello-world.el
blob: 162688bb472aeb92b401c0ee6b3773fccfea6edb (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12











                                                      
;;; hello-world.el --- Hello World Exercise (exercism)

;;; Commentary:

;;; Code:


(defun hello ()
  "Hello, World!")

(provide 'hello-world)
;;; hello-world.el ends here