I hereby claim:
- I am avadhootkulkarni on github.
- I am avad (https://keybase.io/avad) on keybase.
- I have a public key ASD7YcfdLziA9TAmvI1Ukxm-iXa1RzJThVOrFJhmrVMyAAo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| pragma solidity ^0.4.21; //tells that the source code is written for Solidity version 0.4.21 or anything newer that does not break functionality | |
| contract yourToken { | |
| // The keyword "public" makes those variables readable from outside. | |
| address public minter; | |
| // Events allow light clients to react on changes efficiently. | |
| mapping (address => uint) public balances; |
| <div id="mc_embed_signup"><form id="mc-embedded-subscribe-form" class="validate" action="///indorse.us15.list-manage.com/subscribe/post?u=93f666ec18288ad384d11f649&id=7f298cf380" method="post" name="mc-embedded-subscribe-form" novalidate="" target="_blank"> | |
| <div id="mc_embed_signup_scroll"> | |
| <!-- Text Input Field --> | |
| <div class="mc-field-group"> | |
| <input id="mce-EMAIL" class="required email" name="EMAIL" type="email" placeholder="Your Email" /> <input id="mc-embedded-subscribe" class="button" style="font-family: roboto; " name="subscribe" type="submit" value="Subscribe" /> | |
| </div> | |
| <!-- /Submit Button --> |
| print "Welcome to Bowling single player game." | |
| print """ | |
| \nRules | |
| \nYou're given 10 chances. | |
| \nRecord the score once you bowl. | |
| \nIf you hit a 10 i.e. have a strike, you get one more chance to bowl. | |
| \nExcited? Let's get started. | |
| """ | |
| prev_score = 0 |