Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
4answers
444 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)); //alert 15 Please ...
5
votes
12answers
581 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 some HTML: <div ...