DebugBreak

DebugBreak sets a break point. The program will stop execution at the function call interrupted.

DebugBreak()

Return Value

Example

def test()
{
    a = 1;
    DebugBreak();
    a = 2;
}

id-1768911