Created
September 29, 2016 02:34
-
-
Save koic/dc06f2230c6d2a7577af6c1c56a3cf31 to your computer and use it in GitHub Desktop.
YAML case study
This file contains 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' | |
puts YAML.load(DATA.read) # => {"name"=>"Bob"} | |
__END__ | |
--- | |
name: Alice | |
name: Bob |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment