RosettaCodeData/Task/Empty-string/Groovy/empty-string.groovy
2023-07-01 13:44:08 -04:00

5 lines
97 B
Groovy

def s = '' // or "" if you wish
assert s.empty
s = '1 is the loneliest number'
assert !s.empty