!7 cmodule2 StartFirefox > DynSingleFunctionWithPrintLog { switchable S homePage = "https://gazelle.rocks"; Bool mainMethodWorks; Bool fallbackWorks; JComponent makeButtons() { ret hgridWithMargin(super.makeButtons(), jbutton("Fallback", rEnterThread fallback)); } void doIt { print("Trying Firefox"); firefox(homePage); print("Did this work? Else try the fallback."); } void fallback { print("Falling back to default browser"); openPlatformBrowser(homePage); } }