exercism/emacs-lisp/hello-world/hello-world.el

10 lines
190 B
EmacsLisp
Raw Normal View History

2023-01-30 09:00:28 +01:00
;;; hello-world.el --- Hello World exercise (exercism) -*- lexical-binding: t; -*-
;;; Commentary:
(defun hello ()
2023-01-30 09:03:46 +01:00
"Hello, World!")
2023-01-30 09:00:28 +01:00
(provide 'hello-world)
;;; hello-world.el ends here