jan tolenaar / kiezellisp / index-of-everything

Name

push

Usage

macro

Syntax

(push item place)

Description

Prepends item to the list place and updates the setfable place to the new list.

make-html > (let a '(1 2 3))
it: a
make-html > (push 4 a)
it: (4 1 2 3)