jan tolenaar / kiezellisp / index-of-everything

Name

pop

Usage

macro

Syntax

(pop place)

Description

Returns the first element of the list place and updates the setfable place to the rest of the list.

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