September Morn Update
This commit is contained in:
parent
4e2d22a71d
commit
aac6731f2c
6856 changed files with 141342 additions and 21127 deletions
|
|
@ -0,0 +1,7 @@
|
|||
(defun integer-comparison (a b)
|
||||
"Compare A to B and print the outcome in the message buffer."
|
||||
(interactive "nFirst integer ⇒\nnSecond integer ⇒")
|
||||
(cond
|
||||
((< a b) (message "%d is less than %d." a b))
|
||||
((> a b) (message "%d is greater than %d." a b))
|
||||
((= a b) (message "%d is equal to %d." a b))))
|
||||
|
|
@ -0,0 +1 @@
|
|||
(integer-comparison 12 42)
|
||||
Loading…
Add table
Add a link
Reference in a new issue