1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
|
Signed multiply in1 by in2.
/ ( in1 in2 -- out )
Unsigned divide in1 by in2 producing the quotient.
,/ ( in1 in2 -- out )
Signed divide in1 by in2 producing the quotient.
_ ( -- mark )
Add a mark to the stack.
a? ( any -- bool )
True if the value is an array reference, or false if it is any other
type. Error if it is a sound.
|
>
>
>
>
>
>
|
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
|
Signed multiply in1 by in2.
/ ( in1 in2 -- out )
Unsigned divide in1 by in2 producing the quotient.
,/ ( in1 in2 -- out )
Signed divide in1 by in2 producing the quotient.
/mod ( in1 in2 -- quotient remainder )
Like / and mod together.
,/mod ( in1 in2 -- quotient remainder )
Like ,/ and ,mod together.
_ ( -- mark )
Add a mark to the stack.
a? ( any -- bool )
True if the value is an array reference, or false if it is any other
type. Error if it is a sound.
|