Skip to content

Instantly share code, notes, and snippets.

@readbio
readbio / multi-threading with perl example
Created July 6, 2016 13:45 — forked from jclosure/multi-threading with perl example
multi-threading with perl example
#!/opt/local/bin/perl -w
use threads;
use strict;
use warnings;
# SOURCE REF: http://chicken.genouest.org/perl/multi-threading-with-perl/
my @a = ();
my @b = ();