Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
robertkrimen committed Oct 18, 2012
1 parent 6d686aa commit c6f89bb
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions sandbox
@@ -0,0 +1,14 @@
#!/usr/bin/env perl

use strict;
use warnings;

use Google::Search;

my $search = Google::Search->Web( query => "rock" );
while ( my $result = $search->next ) {
print $result->rank, " ", $result->uri, "\n";
print $result->content, "\n";
}


0 comments on commit c6f89bb

Please sign in to comment.