RosettaCodeData/Task/String-comparison/Tcl/string-comparison-1.tcl
2023-07-01 13:44:08 -04:00

6 lines
106 B
Tcl

if {$a eq $b} {
puts "the strings are equal"
}
if {$a ne $b} {
puts "the strings are not equal"
}