Reference / Supported debug commands |
Sets a breakpoint at the specified line or function
b[reak] { line | module:line | function }
The break command sets a breakpoint at a given position in the program.
When the program is running, the debugger stops automatically at breakpoints defined by this command.
(fgldb) break mymodule:5 Breakpoint 2 at 0x00000000: file mymodule.4gl, line 5.