HCoop
/
clinton
/
lisp-on-lines.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
Add LOL component
[clinton/lisp-on-lines.git]
/
src
/
ucw
/
lol-components.lisp
1
(
in-package
:
lol-ucw
)
2
3
(
defcomponent
lol-component
()
4
())
5
6
(
defmethod
output-component
((
self
lol-component
))
7
self
)
8
9
(
defmethod
render
((
self
lol-component
))
10
(
display
(
output-component
self
)
self
))
11
12
13
14