Skip to content

Commit 00c3eb4

Browse files
committed
Set version to 0.4.0
1 parent a2edbcc commit 00c3eb4

File tree

3 files changed

+19
-2
lines changed

3 files changed

+19
-2
lines changed

.emacs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
;;; Emacs4CL 0.4.0-dev <https://github.com/susam/emacs4cl>
1+
;;; Emacs4CL 0.4.0 <https://github.com/susam/emacs4cl>
22

33
;; Customize user interface.
44
(menu-bar-mode 0)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ like:
2525

2626
[![Screenshot of Emacs][screenshot]][screenshot]
2727

28-
[screenshot]: https://i.imgur.com/3BttNWM.png
28+
[screenshot]: https://i.imgur.com/9LoZzHz.png
2929

3030
If you are already comfortable with Emacs and only want to understand
3131
the content of the [`.emacs`] file, you can skip ahead directly to the

meta/example.lisp

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
;;;; Common Lisp Examples.
2+
3+
(defun hello-world ()
4+
"Print 'hello, world' message."
5+
(format t "hello, world~%"))
6+
7+
(defun factorial (n)
8+
"Compute factorial of n."
9+
(if (zerop n)
10+
1
11+
(* n (factorial (- n 1)))))
12+
13+
(defun fibonacci (n)
14+
"Compute nth Fibonacci number."
15+
(if (< n 2)
16+
n
17+
(+ (fibonacci (- n 1)) (fibonacci (- n 2)))))

0 commit comments

Comments
 (0)