List

The list is the only structured data type in EDEN. Data items of different types can be grouped to form a list using the list formation operator []. Commas are used to separate the data. The whole list is considered as a single data item. For example, the list

[ 100, 'a', "string", [1,2,3] ]

holds four items: an integer (100), a character ('a'), a string ("string") and a list ([1,2,3]).

There are no list constants in the language. The characteristics of the list data type are:


[BACK] [FORWARD] [HOME] [UP] [HELP]