Programming With Ruby Episode 14, YAML

preview_player
Показать описание
You will learn how to store data with ruby's YAML library

Рекомендации по теме
Комментарии
Автор

Mostly, '...' doesn't do escape characters \n (new line) or \t (tab), while "..." does. With double quotes you'd get a new line, with single quotes its just a backslash and an n

manwithcode