REBOL 3 Docs | Guide | Concepts | Functions | Datatypes | Errors |
TOC < Back Next > | Updated: 23-Feb-2009 Edit History |
The concept of a series is fundamental in REBOL. You need to know it if you are going to be productive with REBOL.
A series is an ordered sequence of values.
The these values can be characters, as found in a string!, or they can be values as found in a block! series.
There are other types of series too, but they are similar to strings and blocks. For example, a file! and a url! are other types of string series. A path! and a paren! are block! series.
Example series:
string series: "ABCD" file series: %example.txt URL series: http://www.rebol.com block series: [1 2 3 4] paren series: (1 + 2) path series: system/options
There several other series datatypes as well, but they are similar to strings or blocks.
Editor note: This section is new or has has recently changed and is still under construction.
Editor note: This section is new or has has recently changed and is still under construction.
TOC < Back Next > | REBOL.com - WIP Wiki | Feedback Admin |