0 votes
in Gradle by

What will be the output of below Gradle code snippet?

task count << {
   4.times { 
      print "$it " 
   }
}
...