Help for this page
use strict; use warnings; ... my $engine = Engine->new(NUM_WORKERS); printf("%s! = %s\n", $_, fibonacci($engine, $_)) for 1..10; }
1! = 1 2! = 1 ... 8! = 21 9! = 34 10! = 55
BEGIN { package Semaphore; ... $INC{'Engine.pm'} = __FILE__; }