in reply to RE: Automatic CODE-tag creation (Prototype)
in thread Automatic CODE tags

What about something as simple as calling the perl interpreter with a system call? Something as simple as this:
qx {perl -c $function_to_be_executed}
It's clumsy, yes, but it should work.

- Ozymandias

Replies are listed 'Best First'.
RE:(3) Automatic CODE-tag creation (Prototype)
by swiftone (Curate) on Jun 21, 2000 at 20:47 UTC
    Overhead of calling a system process. If we're doing this for every post, PM would grind to a halt. The function is already loaded in memory, we just have to learn how to call it.

    I'll work up some demo code like this, but without that efficiency, it isn't worth inserting.