Last active
July 5, 2016 16:30
-
-
Save oboenikui/d1f656d9dd4b4f5d0956806ef8a2f1d2 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
if 放送日時.時 < 4: | |
放送日時.日 += 1 | |
else if 放送日時.時 >= 24: | |
放送日時.日 += 1 | |
放送日時.時 -= 24 | |
end if |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment