RosettaCodeData/Task/Higher-order-functions/Tcl/higher-order-functions-1.tcl
Ingy döt Net db842d013d A-M baby
2013-04-10 21:29:02 -07:00

6 lines
104 B
Tcl

# this procedure executes its argument:
proc demo {function} {
$function
}
# for example:
demo bell