Created
March 7, 2015 04:13
-
-
Save tomcha/8ca063002d9dcdf2e309 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
| person = { | |
| 'name' => '@tomcha_', | |
| 'hobby' => 'programming', | |
| 'food' => '衣笠丼' | |
| } | |
| puts person['name'] | |
| puts person['hobby'] | |
| puts person['food'] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment