-
-
Save cjwilliams/2a084416f12c809e0702 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
hello: | |
en: "Hello world" | |
es: "Hola mundo" | |
fr: "Bonjour tout le monde" | |
zh: "你好世界" | |
esperanto: "Saluton mondo" | |
de: "Hallo welt" | |
it: "Ciao mondo" | |
latin: "Salve mundi" | |
pt: "Olá mundo" | |
ru: "привет мир" | |
tamil: "ஹலோ உலகம்" | |
welsch: "Helo byd" |
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
require 'yaml' | |
greetings = YAML.load_file('greetings.yml') | |
greetings['hello'].each_value {|value| puts value} |
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 hello.rb | |
Hello world | |
Hola mundo | |
Bonjour tout le monde | |
你好世界 | |
Saluton mondo | |
Hallo welt | |
Ciao mondo | |
Salve mundi | |
Olá mundo | |
привет мир | |
ஹலோ உலகம் | |
Helo byd | |
$ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment