``` operator fun String.invoke(block: () -> Str...
# announcements
s
Copy code
operator fun String.invoke(block: () -> String) { }

"SomeString" {
  "AnotherString"
}
would be the bare minimum to get that particular snippet working
👍🏻 1