The debugger / Debugger commands |
The print command displays the current value of the specified expression.
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.
p is an alias for the print command.
(fgldb) print b $1 = 5 (fgldb)