14 lines
123 B
Plaintext
14 lines
123 B
Plaintext
process seq {
|
|
output:
|
|
env 'RESULT'
|
|
|
|
script:
|
|
'''
|
|
RESULT=$(seq 5)
|
|
'''
|
|
}
|
|
|
|
workflow {
|
|
seq | view
|
|
}
|