about:sequences
make-html > '(a b c)
it: (a b c)
make-html > :d
#s( :members #s( :car a
:cdr (b c)
:count 3
:forced true )
:type "Kiezel.Cons"
:value (a b c) )
make-html > (list 'a 'b 'c)
it: (a b c)
make-html > :d
#s( :members #s( :car a
:cdr (b c)
:count 3
:forced true )
:type "Kiezel.Cons"
:value (a b c) )
make-html > [ a b c ]
it: #v(a b c)
make-html > :d
#s( :members #s( :capacity 20
:count 3 )
:type "Kiezel.Vector"
:value #v(a b c) )
make-html > (vector 'a 'b 'c)
it: #v(a b c)