28 lines
386 B
Plaintext
28 lines
386 B
Plaintext
|
{
|
||
|
fruits = [
|
||
|
{
|
||
|
name = "apple",
|
||
|
varieties = [
|
||
|
{
|
||
|
name = "red delicious",
|
||
|
},
|
||
|
{
|
||
|
name = "granny smith",
|
||
|
},
|
||
|
],
|
||
|
physical = {
|
||
|
color = "red",
|
||
|
shape = "round",
|
||
|
},
|
||
|
},
|
||
|
{
|
||
|
name = "banana",
|
||
|
varieties = [
|
||
|
{
|
||
|
name = "plantain",
|
||
|
},
|
||
|
],
|
||
|
},
|
||
|
],
|
||
|
}
|