Displaying Symbol Values
Use the SHOW SYMBOL command to display the value of a symbol:
$ A = 15$ SHOW SYMBOL A A = 15 Hex = 0000000F Octal = 00000000017
$ B := Hewlett Packard$ SHOW SYMBOL B B = “HEWLETT PACKARD”
$ B := “Hewlett” Packard$ SHOW SYMBOL B B = “Hewlett PACKARD”
Notes:
To display the value of a symbol, use the SHOW SYMBOL command.
SHOW SYMBOL will display the value of the symbol and indicate whether the symbol as displayed is local or global. Local symbol values are displayed with a single equal sign (“=“). Global symbol values are displayed with the double equal (“==“).
Note that integer symbols are displayed in three radices: Decimal, Hexadecimal and Octal.