Debugger commands The Debugger supports a set of command-line commands. breakSets a breakpoint at the specified line or function.backtracePrints a summary of how your program reached the current state. clearClear breakpoint at the specified line or function.continueContinues the execution of the program after a breakpoint.defineSpecifies a user-defined sequence of commands.deleteRemoves breakpoints specified in a debugger session.disableDisables the specified breakpoint.displayDisplays the specified expression's value each time the program stops.downSelects and prints the function called by the current function, or the function specified by the frame number in the call stack.enableEnables breakpoints that have previously been disabled. fileSpecifies the name of the program being debugged.finish Instructs the program to continue running until just after the function in the selected stack frame returns, and then stop. helpProvides information about debugger commands.infoDescribes the current state of the program.listPrints source code lines of the program being executed. nextContinues running the program by executing the next source line in the current stack frame, and then stops.outputPrints only the value of the specified expression, suppressing any other output. printDisplays the current value of the specified expression.quitTerminates the debugger session.runStarts the program executing until a breakpoint is reached or the program terminates normally. setAllows you to set the value of specific variables for the duration of the debugger session.source Executes a file of debugger commands.signalSends an INTERRUPT or QUIT signal to the program.stepContinues running the program by executing the next line of source code, and then stops. untilupSelects and prints the function that called this one.watchSets a watch point for an expression which stops execution of your program whenever the value of the expression changes.whereAlias for backtrace command.Unsupported commandsSome debugger commands are not supported in Genero Studio.