mirror of
https://github.com/ysoftdevs/cpp-examples.git
synced 2026-01-13 23:33:33 +01:00
10 lines
178 B
Groovy
10 lines
178 B
Groovy
task hello {
|
|
// Loaded in configuration phase
|
|
description = "Say Hello :-)"
|
|
doLast {
|
|
// Executed in execution phase
|
|
println "Hello FI MUNI!"
|
|
}
|
|
}
|
|
|