i had intended to add this quote from : "AWK As A Major Systems Programming Language — Revisited"
( previously mentioned in `awk oddity's` @
https://forum.tinycorelinux.net/index.php/topic,25301.msg171413.html#msg171413Furthermore, these languages allow you to group related functions and variables into packages or modules: they let you manage the namespace.
...
If one examines the number of extensions available for PERL on CPAN, or for Python such as PyQt or the Python tk bindings, it becomes clear that extensibility is the real key to power (and from there to popularity).
Furthermore, in awk, all global variables and functions share a single namespace. This prevents many good software development practices based on the principle of information hiding.
To summarize:
A reasonable language definition, efficient implementations, debuggers and profilers are necessary but not sufficient for true power.
The final ingredients are extensibility and namespaces.
https://www.skeeve.com/awk-sys-prog.htmlas it concludes extensibility and modularizability are key components of
perhaps similar reason are behind the popularity of docker ect ?
any way i mention this (hear) because all though tc has a extension system
the other (popular) languages (as mentioned above ) module/extension/"or bindings" systems just do there own thing
usually with the assumption that they have access to persistent storage
a similar problem is faced by other (non distro) package managers afaik
so (i assert) some common ground exists (in the problem space) between TC and other non distribution pkg-mgr's
& therefor perhaps common solution's
might be found
or at least insight gained from other pkg-mgr approaches to problems in this space ?
so what do the forum think ?