From 5428d2ff7b823844040bfc86fe50ec4a6f2ca52e Mon Sep 17 00:00:00 2001 From: Andreas Zweili Date: Mon, 30 Jan 2023 09:03:46 +0100 Subject: [PATCH] Write Hello World --- emacs-lisp/hello-world/hello-world.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/emacs-lisp/hello-world/hello-world.el b/emacs-lisp/hello-world/hello-world.el index 0bb9246..5af1414 100644 --- a/emacs-lisp/hello-world/hello-world.el +++ b/emacs-lisp/hello-world/hello-world.el @@ -3,7 +3,7 @@ ;;; Commentary: (defun hello () - "Goodbye, Mars!") + "Hello, World!") (provide 'hello-world) ;;; hello-world.el ends here