Per Hedbor () @ Pike (-) developers forum wrote:
function werror = Files()->_stderr->write;
towards the beginning, and add_constant( "werror", werror ); close to the 'add_constant("write", ... )' code.
What is the advantage of defining function werror first? Why not simply use:
add_constant("werror", Files()->_stderr->write);
?