mirror of
https://github.com/XAMPPRocky/tokei.git
synced 2026-05-28 00:20:57 +02:00
df545f5820
* Add nextflow * Add nextflow test * Add nextflow test data
19 lines
249 B
Plaintext
19 lines
249 B
Plaintext
/* 18 lines 10 code 5 comments 3 blanks */
|
|
|
|
/*
|
|
Nextflow - hello
|
|
*/
|
|
|
|
// comment
|
|
cheers = Channel.from 'Bonjour', 'Ciao', 'Hello', 'Hola'
|
|
|
|
process sayHello {
|
|
echo true
|
|
input:
|
|
val x from cheers
|
|
script:
|
|
"""
|
|
echo '$x world!'
|
|
"""
|
|
}
|