Variables: Difference between revisions

No edit summary
Line 2,724:
=={{header|Red}}==
<lang Red>
Variables are word labels assigned to represent data in a program. A colon is used to bind a word to the next expression. The colon is not an assignment operator.
The colon is not an assignment operator.
>> mystr: "Hello World" ; Bind the word mystr to the string "hello world". mystr refers to the literal string "Hello World"
== "Hello World"
Anonymous user