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

3 lines
66 B
Tcl

proc multiply { arg1 arg2 } {
return [expr {$arg1 * $arg2}]
}