Update of "syntax"
Not logged in

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview

Artifact ID: 197a2f5b460bb530b59da6751bdfe955df1e6e95
Page Name:syntax
Date: 2012-01-21 07:36:28
Original User: vasalvit
Parent: 41c4fe80b022d6ac00dc9fcd369d9f5eb4410acf (diff)
Content

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