fac / gf /sd-webui-lua /examples /basics /start_end_debugging.lua
dikdimon's picture
Upload gf using SD-Hub extension
29a5ed9 verified
-- Example to show how to execute only part of a script - Yownas
ui.console("This will not happen.")
--START--
-- Adding a START comment like this will skip execution of the script above it.
ui.console("Debug here!")
--END--
-- Adding a END comment like this will stop execution.
ui.console("This will not happen either.")