Last active
December 26, 2015 12:49
-
-
Save tkuchiki/7154027 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
# ruby | |
# 2000-01-01 01:01:01 | |
Time.now.strftime('%F %T') | |
Time.now.strftime('%Y-%m-%d %H:%M:%S') |
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
# lua | |
os.date("%y-%m-%d %X%z") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment