The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
#!perl -w
use Mac::Glue;

my($n, @browsers);

@browsers = qw(Safari OmniWeb Firefox Camino Mozilla);

for my $browser (@browsers) {
	my $n = eval {
		new Mac::Glue $browser
	};
	next unless $n;
	
	$n->activate;
	$n->open_location('http://projects.pudge.net/');
}