6 lines
106 B
Tcl
6 lines
106 B
Tcl
if {$a eq $b} {
|
|
puts "the strings are equal"
|
|
}
|
|
if {$a ne $b} {
|
|
puts "the strings are not equal"
|
|
}
|