numeric <assign> {,<assign> ... }
Declare (and optionally assign) one or more numeric variables.
<assign>
<ident> { = <value> }
<ident>
The name of the identifier.
<value>
A numeric expression.
None
If not given a value, the identifier is initialized to zero.
New identifier, initialized to 0.
numeric fred
New identifiers, initialized.
numeric x = 10, y = 12
New identifier array.
numeric nums[5] = < 1,2,4,8,sqrt(256) >
New identifier, initialized using hexadecimal notation.
numeric x = 0x1c