Skip to content

Instantly share code, notes, and snippets.

@semifor
Created November 8, 2009 17:20
Show Gist options
  • Save semifor/229387 to your computer and use it in GitHub Desktop.
Save semifor/229387 to your computer and use it in GitHub Desktop.
# to print the names of a user's lists with Net::Twitter
if ( my $r = $nt->list_lists($screen_name) ) {
for my $list ( @{$r->{lists}} ) {
print "$list->{name}\n";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment