summaryrefslogtreecommitdiff
path: root/emacs/.doom.d/test.el
blob: b8652be3bb81a1e3a96521377c22e7c9c1b51590 (plain)
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