syntax
Not logged in

Syntax of the language

Collections

  • LISTs (single-linked or double-linked). LIST is a collection with sequential access.
    (list

    :type value ...) ; use default list
    (single-list:type value ...) ; use single-linked list
    (double-list:type value ...) ; use double-linked list
    These functions create list of items (with specified type) and add some values to this list.

  • ARRAYs and VECTORs (array and vector is the same). ARRAY is a collection with random access.
    (array:type value ...)
    (vector:type value ...)
    These functions create array of items (with specified type) and add some values to this array.

  • HASHes and MAPs