Last active
December 27, 2015 08:59
-
-
Save kyuden/7299987 to your computer and use it in GitHub Desktop.
【WZ】<定数Hash> ・入力と保存を異なる型で対応つける場合
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
NOT_YET = 0 | |
DONE = 1 | |
PENDING = 2 | |
STATUS ={ | |
"NOT_YET" => NOT_YET, | |
"DONE" => DONE, | |
"PENDING" => PENDING | |
}.freeze |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment