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