RosettaCodeData/Task/Empty-string/Fantom/empty-string.fantom
Ingy döt Net db842d013d A-M baby
2013-04-10 21:29:02 -07:00

5 lines
260 B
Text

a := "" // assign an empty string to 'a'
a.isEmpty // method on sys::Str to check if string is empty
a.size == 0 // what isEmpty actually checks
a == "" // alternate check for an empty string
!a.isEmpty // check that a string is not empty