1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
|
attribute is preceded by a comma, then it is an error to specify any
user flags not assigned to that variable, otherwise any user flags
that do not belong are ignored. Any user flag may optionally be
preceded by a comma, and may occur multiple times; only the last
instance of each is used. If the last instance of a flag has a
comma then that bit is clear, if without a comma then it is set.
. ( x -- )
+ ( in1 in2 -- out )
Add two numbers together.
- ( in1 in2 -- out )
Subtract in2 from in1.
|
>
>
>
>
|
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
|
attribute is preceded by a comma, then it is an error to specify any
user flags not assigned to that variable, otherwise any user flags
that do not belong are ignored. Any user flag may optionally be
preceded by a comma, and may occur multiple times; only the last
instance of each is used. If the last instance of a flag has a
comma then that bit is clear, if without a comma then it is set.
(<userflags...>) ( -- number )
As above, but you can omit the attribute; it will be implied. All
flags listed must be the same attribute otherwise it is an error.
. ( x -- )
+ ( in1 in2 -- out )
Add two numbers together.
- ( in1 in2 -- out )
Subtract in2 from in1.
|