DataBasic Reference > The Debugger > Summary of Debugger Commands > X

Comment on this topic

Documentation Comments

Use this form to comment on this topic. You can also provide any general observations about the Online Documentation, or request that additional information be added in a future release.

RealityV15.1Online Documentation (MoTW) Revision 7

X command (DataBasic debugger) (m618706+x.htm)

To

Reality

Version

Topic

Submitted by

Company

Location

Email address

Comment

 

 

X

Displays the value of a variable in hexadecimal representation or lists all variables and their values. If you display the value of a single variable, you can change the value.

Syntax

X [variable-name || *]

Syntax Element

variable-name the name of a simple variable, array or array element.

* specifies display the values of all the variables and arrays in the program.

Operation

The display is in ASCII hexadecimal character format. If you want the display in character format, refer to the / command.

If you specify a variable name, its current value is displayed followed by an equals sign (=). The = is a prompt for input of the value to set that variable to.

Specify * to see the values of all variables (without the option of changing them).

A blank must be present between X and variable-name.

This command is functionally equivalent to the / command preceded by the optional X, but with a space instead of the / character.

RealityV15.1 (MoTW) Revision 7Comment on this topic