repo.or.cz
/
biolisp.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
create sql module.
[biolisp.git]
/
lambda-utils
/
numbers.lisp
blob
6f72e3e381cc972cc91f104e44746c6d332d2625
1
(
in-package
:
lambda-utils
)
2
3
(
defun
na-p
(
x
)
4
(
eq
x
:
na
))
5
6
7
(
declaim
(
inline
sq
)
8
(
ftype
(
function
(
number
)
number
)
sq
))
9
10
(
defun
sq
(
x
)
11
"Square of a number"
12
(*
x x
))