repo.or.cz
/
sbcl.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Transpose lines.
[sbcl.git]
/
tests
/
block-compile-test-2.lisp
blob
0d1d4fc3261664980a287e2abe299b8f82674dd2
1
(
defun
foo1
(
x
y
)
2
(
bar2
x y
))
3
4
(
defun
bar2
(
x
y
)
5
(
if
(
zerop
x
)
6
y
7
(
foo1
(
1-
x
) (*
y x
))))