print

Displays the current value of the specified expression.

Syntax

p[rint] expression
  1. expression is your program's expression that you wish to examine.

Usage

The print command allows you to examine the data in your program.

It evaluates and prints the value of the specified expression from your program, in a format appropriate to its data type.

Example

(fgldb) print b
 $1=5
(fgldb)