Intro to YAML 101
I love learning about technology and sharing that with others
# this is the comment in yaml yet another markup language
name : “sandeep”
age : 24
occupation : “Software Enginner”
#below mentioned is the object person and we can access its data memebers person.name
person:
name : ‘pradeep’
age : 23
# List in YAML
person :
hobbies :
— Coding
— Reading
— Writing
Movies : [“Movie 1”,”Movie 2"]
# above mentioned code the hobbies is a list where we can traverse through the list and read everything
# Both the hobbies and movies are the same list using YAML

