2023-01-19 21:27:15 +00:00
|
|
|
# ch5-02-semi-colons.rsc
|
|
|
|
|
|
|
|
:local MULTIPLIER 10;
|
|
|
|
|
|
|
|
:for Number from=1 to=10 do={
|
|
|
|
:local Result ($Number * $MULTIPLIER);
|
2023-03-06 20:56:48 +00:00
|
|
|
:put ("This is an unusually long line. Here is the result $Number \
|
|
|
|
times $MULTIPLIER is: $Result");
|
|
|
|
}
|