68
STO–
* = function
STO– Calculates the difference between an object and a
variable and stores the object in the variable.
<N
MEMORY
ARITHMETIC
obj
‘
name
’
→
STO* Multiplies the contents of a specified variable by a number
or other object.
<N
MEMORY
ARITHMETIC
obj
‘
name
’
→
STO/ Calculates the quotient of a number and the contents of a
specified variable. Stores new value in the specified
variable.
<N
MEMORY
ARITHMETIC
obj
‘
name
’
→
STO+ Adds a number or other object to a variable.
<N
MEMORY
ARITHMETIC
obj
‘
name
’
→
STOΣ Stores
obj
in the reserved variable Σ
DAT.
N
obj
→
→STR Converts any object to string form.
N
obj
→ “
string
”
STR→ Evaluates the text of a string as if the text were entered
from the command line.
N
obj
1
→
obj
2
STREAM Repeatedly executes
obj
on the first two elements in a list
until the list is exhausted. Returns the final result.
<N
LIST
PROCEDURES
{
list
}
obj
→
result
STWS Sets the current binary integer wordsize to
n
bits, where
n
is a value from 1 through 64 (the default is 64).
< P
BASE
n
→
SUB Returns the specified portion of an object.
<N
LIST
“
string
1
”
n
start position
n
endposition
→ “
string
2
”
SUBST Substitutes a value or expression for a variable in an
expression.*
>ú
‘
symb
1
’
z
1
→ ‘
symb
2
’
Name Description Access Inputs Outputs