Tagged Questions

5
votes
12answers
417 views

In what languages can you dynamically rewrite functions on the fly?

I recently had the necessity of rewriting a javascript function in javascript, dynamically. The ease with which I did it, and how fun it was, astounded me. Over here I've got som …
4
votes
4answers
219 views

Can you show me how to rewrite functions in lisp?

Consider this javascript: function addX(n) { return 3 + n; } alert(addX(6)); //alerts 9 eval('var newFunc = ' + addX.toString().replace("3", "5") + ';'); alert(newFunc(10)); //a …