RosettaCodeData/Task/Empty-string/Groovy/empty-string.groovy

6 lines
97 B
Groovy
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
def s = '' // or "" if you wish
assert s.empty
s = '1 is the loneliest number'
assert !s.empty