You are a moron. Please leave this thread immediately.
No, I just happen to fully understand the importance of properly educating less experienced coders. You should never tell someone who has just started writing C to use gets(), for example, as you would be telling them that they should make their code exploitable and easy to crash, when given unexpectedly long input lines.
Giving bad advice ("Use eval!", without mentioning the dangers) is a sign that you are either intentionally trying to mislead them so that they never make any mods to compete with your own, or it shows that you don't understand how to teach others properly.
Specifically in this thread, you gave a snippet of code that, clearly, you were proud about having devised yourself, since it clearly solved the person's problem. Except, you didn't put the time in to explain how to use it, any drawbacks, or, really, how it supposedly solves their problem! First, you assume that they know that eval takes a string of code. Imagine their surprise if they end up getting a
syntax error once per second as soon as they try to loop(myFunc, 1000); Or worse, loop(myFunc, 1); /*That is one second, right?*/. So, assuming they understand that eval takes a string and that schedule measures in thousandths of a second, and that eval executes code, so they'll need to add brackets and a semicolon, why would they need to ask the question in the first place?
Oh, and what if they were asking about recursion, rather than looping over time? Less likely, but entirely plausible, from their less-than-perfectly-clear phrasing?
So, your response is to give an overgeneralized solution that you are too proud of to accept any sort of criticism, and that you feel can solve any problem. A function so well thought out that nobody could possibly need an explaination for how it works. A function that will doubtlessly be copy-pasted into numerous other add-ons, with the same exact name. Oh, and then someone modifies it. Gasp! But why? It's clearly a perfect function, there is no reason at all possible that would cause somebody to ever edit it!
Except someone does. And then everyone who downloads it and any other add-on that uses your function get to experience the joys of subtle version incompatibilities!
If you share code, you must take the responsibility to ensure that it's recipients understand how it works. Otherwise, you are irresponsibly subjecting countless people playing to numerous bugs because somebody took your code and broke it because they didn't understand it.