exercism

Exercism solutions.
git clone git://code.dwrz.net/exercism
Log | Files | Refs

hello-world.el (226B)


      1 ;;; hello-world.el --- Hello World Exercise (exercism)
      2 
      3 ;;; Commentary:
      4 ;; This package provides a Hello World function.
      5 
      6 ;;; Code:
      7 
      8 
      9 (provide 'hello-world)
     10 
     11 (defun hello ()
     12   "Hello, World!"
     13   )
     14 
     15 ;;; hello-world.el ends here