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
| ### Keybase proof | |
| I hereby claim: | |
| * I am robinmitra on github. | |
| * I am robinmitra (https://keybase.io/robinmitra) on keybase. | |
| * I have a public key ASCodCcll-pjzpklJKdlVMWRqYuG2yHNA7yLtZmAP-ETVwo | |
| To claim this, I am signing this object: |
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/env bash | |
| GITHUB_USERNAME=<username> | |
| GITHUB_ACCESS_TOKEN=<access-token> | |
| REPO_URL=https://api.github.com/repos/<repo-owner>/<repo> | |
| PR_BASE_URL=${REPO_URL}/pulls | |
| COMMENT_BASE_URL=${REPO_URL}/issues |
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
| # initialization file (not found) |
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 Deck { | |
| List<Card> cards = []; | |
| Deck() { | |
| var ranks = ['Ace', 'Two', 'Three', 'Four']; | |
| var suits = ['Diamonds', 'Hearts', 'Clubs', 'Spades']; | |
| for (var suit in suits) { | |
| for (var rank in ranks) { | |
| var card = Card(rank: rank, suit: suit); | |
| this.cards.add(card); |
OlderNewer