in reply to strict refs on / off process time
no strict 'refs'; while (true) { &$func_name(...); } use strict; vs while (true){ no strict 'refs'; &$func_name(...); use strict; } [download]