Does anybody know how I could write a function, that was able to create other functions, using the contents of a variable for it's name?
Here's a basic example of what I'm talking about in php:
function nodefunctioncreator()
{
for ($i =1, $i < 10, $i++)
{
$newfunctionname = "Node".$i;
function $newfunctionname()
{
//code for each of the functions
}
}
}
Does anybody know a language that would allow me to do this?