Yeah, I copied the entire block like this: ```task...
# gradle
a
Yeah, I copied the entire block like this:
Copy code
tasks {
    "hello" {
        doLast {
            ant.withGroovyBuilder {
                "echo"("message" to "Hello from Ant!")
            }
        }
    }
}