Created
December 26, 2015 06:06
-
-
Save toshi0383/fef9cc4e9350d25aed88 to your computer and use it in GitHub Desktop.
Localize日本語だけでいいのならこれで良さげ #cswift #CodePiece
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
| struct Book { | |
| enum BookType: String { | |
| case 単行本, 電子書籍 | |
| } | |
| let bookType:BookType | |
| let price:Int | |
| } | |
| print(Book.BookType.単行本) // "単行本" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment