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