Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
|
|
@ -0,0 +1,12 @@
|
|||
(ql:quickload :closure-html)
|
||||
(use-package :closure-html)
|
||||
(serialize-lhtml
|
||||
`(table nil
|
||||
(tr nil ,@(mapcar (lambda (x)
|
||||
(list 'th nil x))
|
||||
'("" "X" "Y" "Z")))
|
||||
,@(loop for i from 1 to 4
|
||||
collect `(tr nil
|
||||
(th nil ,(format nil "~a" i))
|
||||
,@(loop repeat 3 collect `(td nil ,(format nil "~a" (random 10000)))))))
|
||||
(make-string-sink))
|
||||
Loading…
Add table
Add a link
Reference in a new issue