Variable¶
Access to Variables is provided by the VariableService class. Each debugger has its own instance, which can be used through its variable attribute.
Writing Variable¶
>>> dbg.variable.write("variableName", "value")
Reading Variable¶
>>> variable = dbg.variable.read("variableName")
>>> print(variable.value)
