A-M baby
This commit is contained in:
parent
764da6cbbb
commit
db842d013d
19005 changed files with 197040 additions and 7 deletions
|
|
@ -0,0 +1,9 @@
|
|||
(let ((a (read *standard-input*))
|
||||
(b (read *standard-input*)))
|
||||
(cond
|
||||
((not (numberp a)) (format t "~A is not a number." a))
|
||||
((not (numberp b)) (format t "~A is not a number." b))
|
||||
((< a b) (format t "~A is less than ~A." a b))
|
||||
((> a b) (format t "~A is greater than ~A." a b))
|
||||
((= a b) (format t "~A is equal to ~A." a b))
|
||||
(t (format t "Cannot determine relevance between ~A and ~B!" a b)))))
|
||||
Loading…
Add table
Add a link
Reference in a new issue