-
Notifications
You must be signed in to change notification settings - Fork 84
/
Copy pathexample2-exp
executable file
·83 lines (83 loc) · 1.1 KB
/
example2-exp
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
name = "Books, Movies & More";
inventory :
{
books = (
{
title = "Treasure Island";
author = "Robert Louis Stevenson";
price = 29.99;
qty = 5;
},
{
title = "Snow Crash";
author = "Neal Stephenson";
price = 9.99;
qty = 8;
} );
movies = (
{
title = "Brazil";
media = "DVD";
price = 19.99;
qty = 11;
},
{
title = "The City of Lost Children";
media = "DVD";
price = 18.99;
qty = 5;
},
{
title = "Memento";
media = "Blu-Ray";
price = 24.99;
qty = 20;
},
{
title = "Howard the Duck";
},
{
title = "Buckaroo Banzai";
media = "DVD";
price = 12.99;
qty = 20;
} );
};
hours :
{
mon :
{
open = 9;
close = 18;
};
tue :
{
open = 9;
close = 18;
};
wed :
{
open = 9;
close = 18;
};
thu :
{
open = 9;
close = 18;
};
fri :
{
open = 9;
close = 20;
};
sat :
{
open = 9;
close = 20;
};
sun :
{
open = 11;
close = 16;
};
};