YAML. More Types
This is the second task on parsing YAML. It represents the next step where parsing gets more complicated. The data types, such as None and bool, are being added, and besides that, you’re getting the ability to use quotes in strings.
Here are some of the examples:
name: "Bob Dylan" children: 6 |
{
"name": "Bob Dylan",
"children": 6
}
|
name: "Alex \\"Fox\\"" children: 6 |
{
"name": "Alex \"Fox\"",
"children": 6
}
|
As you can see, the string...
You should be an authorized user in order to see the full description and start solving this mission.