For example,
def makeFunction name
... #define a function with the name supplied
end
makeFunction 'functionMade'
functionMade
I know it's possible to make a global variable $functionMade through lambda or proc, but is it possible to make it really a function without the $ prefix?