The debugger / Debugger commands |
The whatis command prints the data type of a variable.
whatis variable-name
The whatis command can be used to show the data type of a program variable. The program variable must exist in the current scope.
(fgldb) run Breakpoint 1, main() at t.4gl:4 4 LET i = 1 (fgldb) whatis i type = INTEGER (fgldb)