Lists Blocks

create empty list

Creates an empty list.

Returns

  • List: An empty list.

create list with

Creates a list with the specified items.

Parameters

  • Item(s) (Any type)

Returns

  • List: A list containing the specified items.

create list

[description]

Parameters

  • Item(s) (Any type)

Returns

  • List: A newly created list.

head (Lisp CAR)

[description]

Parameters

  • List (List)

Returns

  • Any type: The first element of the list.

tail (Lisp CDR)

[description]

Parameters

  • List (List)

Returns

  • List: A list excluding the first element.