Hi there, please someone can give me a few explana...
# getting-started
d
Hi there, please someone can give me a few explanation about the use of text@ and @text after run function, please check the following code:
Copy code
private fun getClickTagName(textOptions: List<String>, tag: StringBuilder): String {
        var textToSearch = ""
        run clickTags@{
            textOptions.forEach { clickTag ->
                if (tag.contains(clickTag, true)) {
                    textToSearch = clickTag
                    return@clickTags
                }
            }
        }

        return textToSearch
    }
Is it kind of notation? does someone know it?
e
d
Hey, thank you for your attention 🙂