Last active
December 20, 2015 13:38
-
-
Save Leko/6140257 to your computer and use it in GitHub Desktop.
バルス!!!!!!
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
# encoding: utf-8 | |
require "twitter" | |
Twitter.configure{ |conf| | |
conf.consumer_key = CONSUMER_KEY | |
conf.consumer_secret = CONSUMER_SECRET | |
conf.oauth_token = OAUTH_TOKEN | |
conf.oauth_token_secret = OAUTH_TOKEN_SECRET | |
} | |
def bals(n) | |
n.times{|i| | |
tweet = "バルス" + "!" * (i+1) | |
Twitter.update(tweet) | |
i += 1 | |
} | |
end | |
bals(20) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment