0 votes
in Gradle by

What will be the output of below Gradle code snippet?

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

Related questions

0 votes
asked May 27, 2019 in Gradle by Ankita1283
0 votes
asked Jun 21, 2020 in Gradle by Robindeniel
...