RosettaCodeData/Task/Logical-operations/Tcl/logical-operations.tcl
Ingy döt Net db842d013d A-M baby
2013-04-10 21:29:02 -07:00

5 lines
130 B
Tcl

proc logic {a b} {
puts "a and b: [expr {$a && $b}]"
puts "a or b: [expr {$a || $b}]"
puts "not a: [expr {!$a}]"
}