Command: numeric

Syntax

numeric <assign> {,<assign> ... }

Description

Declare (and optionally assign) one or more numeric variables.

Parameters

Switches

None

Notes

If not given a value, the identifier is initialized to zero.

Examples

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