I added an `.also { println("**** Action! ****") }...
# arrow-meta
m
I added an
.also { println("**** Action! ****") }
to the "hello world" plugin but I can't see the message printed on the console, when I use it. Where does it go? What do you use for "print debugging"?
Copy code
namedFunction({ name == "helloWorld" }) { c ->
    Transform.replace(
            replacing = c,
            newDeclaration =
            """|fun helloWorld(): Unit =
               |  println("Hello ΛRROW Meta!")
               |""".function.syntheticScope
                    .also { println("**** Action! ****") }
    )
}