RosettaCodeData/Task/Empty-string/Tcl/empty-string-2.tcl

4 lines
146 B
Tcl
Raw Permalink Normal View History

2013-04-10 16:57:12 -07:00
if {[string equal $s ""]} {puts "is empty"}
if {[string length $s] == 0} {puts "is empty"}
if {[string compare $s ""] != 0} {puts "is non-empty"}