list

Synopsis

(list varargs)

Parameters

  • varargs: no, one or multiple objects

Description

Side Effects

Return Value

A list consisting of all passed arguments is returned.

Implementation

(define
 list
 (named-lambda (list . x) x))

Example

> (list)
()
> (list 'a)
(a)
> (list 'a 'b 'c)
(a b c)
>