5 lines
97 B
Groovy
5 lines
97 B
Groovy
def s = '' // or "" if you wish
|
|
assert s.empty
|
|
|
|
s = '1 is the loneliest number'
|
|
assert !s.empty
|