info
The info command describes the current state of your
  program.
Syntax
info { breakpoints
| sources
| program
| variables
| locals
| files
| line { function
         | module:line } 
}
- function is a function name of the program.
 - module:line defines a source code line in a module.
 
Usage
The info command
describes the state of your program.
info breakpointslists the breakpoints that you have set.info sourcesprints the names of all the source files in your program.info programdisplays the status of your program.info variablesdisplays global variables.info localsdisplays the local variables of the current function.info fileslists the files from which symbols were loaded.info line functionprints the program addresses for the first line of the function named function.info line module:lineprints the starting and ending addresses of the compiled code for the source line specified. See the list command for all the ways that you can specify the source code line.
Example
(fgldb) info sources 
Source files for which symbols have been read in: 
mymodule.4gl, fglwinexec.4gl, fglutil.4gl, fgldialog.4gl, fgldummy4js.4gl
(fgldb)