in reply to calling f(arg1,arg2,arg3) better than &f
Instead of placing the following in my script:sub write_log { ... } sub write_error { ... }
I can keep it cleaner by simply having:write_log('string'); write_error('string');
With write_all defined as:write_all('string');
&write_log; &write_error;
|
|---|