Last active
October 8, 2018 17:43
-
-
Save Opalo/dac0b346166b01668ba9c14e6b1fa08d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
println 'a' | |
task t1 { | |
doFirst { | |
println 'b' | |
} | |
} | |
println 'c' | |
task t2 << { | |
println 'd' | |
} | |
task t5 { | |
println 'e' | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment