jan tolenaar / kiezellisp / index-of-everything

Name

append

Usage

builtin-function

Syntax

(append &rest seqs)

Description

Concatenates sequences into a new lazy sequence.

make-html > (append '(1 2 3) '(4 5))
it: (1 2 3 4 5)