14 lines
124 B
Plaintext
14 lines
124 B
Plaintext
|
|
process HELLO {
|
|
debug true
|
|
|
|
script:
|
|
"""
|
|
echo "args = ${task.ext.args}"
|
|
"""
|
|
}
|
|
|
|
workflow {
|
|
HELLO()
|
|
}
|