-
Notifications
You must be signed in to change notification settings - Fork 0
/
exercise-3-xml.xml
41 lines (36 loc) · 909 Bytes
/
exercise-3-xml.xml
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
<?xml version="1.0" ?>
<forecast>
<dailyForecast>
<date>2015-06-01</date>
<description>sunny</description>
<maxTemp unit="C">22</maxTemp>
<minTemp unit="C">20</minTemp>
<windSpeed unit="kph">12</windSpeed>
<danger>false</danger>
</dailyForecast>
<dailyForecast>
<date>2015-06-02</date>
<description>windy</description>
<maxTemp unit="C">22</maxTemp>
<minTemp unit="C">20</minTemp>
<windSpeed unit="kph">40</windSpeed>
<danger>true</danger>
</dailyForecast>
<dailyForecast/>
</forecast>
<!--
# Exercise 3
## Step 1
-->
<!--
<?xml version="1.0" ?>
<dailyForecast>
<date>2015-06-01</date>
<description>sunny</description>
<maxTemp unit="C">22</maxTemp>
<minTemp unit="C">20</minTemp>
<windSpeed unit="kph">12</windSpeed>
<danger>false</danger>
</dailyForecast>
-->
<!-- ## Step 2 -->