RosettaCodeData/Task/Integer-comparison/Tcl/integer-comparison-1.tcl
Ingy döt Net db842d013d A-M baby
2013-04-10 21:29:02 -07:00

8 lines
194 B
Tcl

puts "Please enter two numbers:"
gets stdin x
gets stdin y
if { $x > $y } { puts "$x is greater than $y" }
if { $x < $y } { puts "$x is less than $y" }
if { $x == $y } { puts "$x equals $y" }