zaz/doc/source/main/00_tools.rst
2021-02-07 22:36:13 -06:00

27 lines
330 B
ReStructuredText

Debug
^^^^^
**INFO_DEBUG**
^^^^^^^^^^^^^^
Show info debug, show in message box.
.. code-block:: python
import easymacro as app
def info():
app.msgbox(INFO_DEBUG)
return
Show in shell.
.. code-block:: python
import easymacro as app
def info():
app.debug(INFO_DEBUG)
return