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

my $myspace = new WWW::Myspace( auto_login => 0 );

my $cool = $myspace->cool_new_people( 'US' );

foreach $person ( keys ( %{ $cool } ) ) {

  print $person . "\n";

}