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

6 lines
97 B
Groovy
Raw Permalink Normal View History

2013-04-10 21:29:02 -07:00
def s = '' // or "" if you wish
assert s.empty
s = '1 is the loneliest number'
assert !s.empty