This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/perl | |
| use strict; | |
| use warnings; | |
| use v5.10; | |
| use Net::Google::Spreadsheets; | |
| use Net::Google::DataAPI::Auth::OAuth2; | |
| use Net::OAuth2::AccessToken; | |
| use Storable; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/perl | |
| use Storable; | |
| use Net::Google::Spreadsheets; | |
| use Net::Google::DataAPI::Auth::OAuth2; | |
| use Term::Prompt; | |
| my $oauth2 = Net::Google::DataAPI::Auth::OAuth2->new( | |
| client_id => '...', | |
| client_secret => '...', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class Program | |
| { | |
| private static bool greaterThan50Func(int x) | |
| { | |
| return x > 50; | |
| } | |
| static void Main(string[] args) | |
| { | |
| var testList = new List<int>(); |