Red Foundations

Revision as of 22:48, 5 January 2020 by GiuseppeChillemi (talk | contribs) (Created page with "A Red program is just a set of elements in a block. When not interpreted, elements can be in any order, when you evaluate the block, a set of rules are applied to interpret th...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

A Red program is just a set of elements in a block. When not interpreted, elements can be in any order, when you evaluate the block, a set of rules are applied to interpret the block elements a data takes life in a program.

You have the following bricks of Red Element in blocks:

set-words: [a: a: a:]

numbers: [22 33 55]

istructions: [probe probe probe]

blocks: [[] [] []]

code-to-execute: []