I want to write a function that can be used like this:
my_function {
cmdA argA_1 argA_2
cmdB argB_1 argB_2
cmdC argC_1 argC_2
}
I want to implement my_function by using namespace eval ::my_internal_namespace [uplevel ...], possibly in a loop. Although this is not immediately very useful, I will enhance it later to do more than merely uplevel.
my_internal_namespace would be defined something like this:
namespace eval my_internal_namespace {
proc cmdA { args } {
puts "$args"
}
proc cmdB { args } {
puts "$args"
}
proc cmdC { args } {
puts "$args"
}
}
I think this technique will ultimately allow the caller of my_function to declare some facts and behaviours that they would like from my_function, where the parameters of those facts and behaviours are evaluated in the context of the caller, for example, to get the value of variables or to perform other substitutions in the namespace and scope of the caller.