8 lines
148 B
Groovy
8 lines
148 B
Groovy
|
|
def testVal = 'upraisers'
|
||
|
|
println """
|
||
|
|
original: ${testVal}
|
||
|
|
top: ${top(testVal)}
|
||
|
|
tail: ${tail(testVal)}
|
||
|
|
top&tail: ${tail(top(testVal))}
|
||
|
|
"""
|