1 2 3 4 5 6 7 8 9 10 11 12 13
;;; test.el --- Description -*- lexical-binding: t; -*- ;;; Commentary: ;; Description ;;; Code: (defun test (&optional arg) (let ((msg (or arg "World"))) (message "Hello %s\n" msg))) (test) (provide 'test) ;;; test.el ends here