Created
September 12, 2014 08:26
-
-
Save tknzk/86e8efeb1598001b4df9 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
# Description: | |
# heisei | |
# | |
# Dependencies: | |
# | |
# Configuration: | |
# | |
# Commands: | |
# hubot heisei | |
# | |
# Author: | |
# tknzk | |
module.exports = (robot) -> | |
robot.respond /heisei/i, (msg) -> | |
msg.send generate() | |
generate = (str) -> | |
d = new Date(); | |
year = d.getFullYear(); | |
heisei = year - 2000 + 12; | |
'今年は平成' + heisei + '年だよ'; |
Author
tknzk
commented
Sep 12, 2014
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment