-
Notifications
You must be signed in to change notification settings - Fork 231
/
Copy pathbasics.yml
88 lines (71 loc) · 1.87 KB
/
basics.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
---
# The Office: YAML Basics
# A simple string
employee_name: "Michael Scott" # This is how a string works
# An integer representing age
employee_age: 45 # This is how an integer works
# A multiline string (note the use of the pipe symbol)
employee_quote: |
"Beer, beats, Battlestar Galactica."
"I declare bankruptcy!"
# A boolean indicating manager status
is_manager: true
# A list of favorite quotes
favorite_quotes:
- "That's what she said!"
- "I declare bankruptcy!"
# Dwight's tasks for the day (a list)
tasks:
- "Battle Jim in a prank war"
- "Harvest beets"
- "Attend a beet convention"
# Stanley's productivity level (an integer)
productivity: 6 # Needs more pretzels
# Angela's cat collection (a list of dictionaries)
cats:
- name: "Sprinkles"
breed: "Persian"
- name: "Bandit"
breed: "Siamese"
# Oscar's financial breakdown (a dictionary)
finances:
income: 60000
expenses:
- "Accounting software subscription"
- "Cat food"
- "Sensible shoes"
# Kelly's favorite colors (a list of strings)
favorite_colors:
- "Purple"
- "Pink"
- "Glittery gold"
# Creed's to-do list (a list of dictionaries)
to_do_list:
- task: "Survive"
priority: "High"
- task: "Find out what the company does"
priority: "Low"
# Meredith's favorite drinks (a dictionary)
favorite_drinks:
alcoholic: "Vodka"
non_alcoholic: "Soda"
# Phyllis's favorite foods (a list of dictionaries)
favorite_foods:
- name: "Chocolate cake"
type: "Dessert"
- name: "Potato salad"
type: "Side dish"
# Kevin's favorite numbers (a list of integers)
favorite_numbers:
- 69
- 420
# Ryan's career goals (a list of strings)
career_goals:
- "Become a millionaire"
- "Start a successful business"
- "Retire by 40"
# Toby's hobbies (a list of strings)
hobbies:
- "Writing mystery novels"
- "Attending jury duty"
- "Avoiding Michael Scott"