Skip to main content

Command Palette

Search for a command to run...

Intro to YAML 101

Published
1 min read
S

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

3 views

More from this blog

H

hashcodehub

271 posts

Consistent, Passionate and Organized :)

Intro to YAML 101