hnc-vitalii/HNS/Excercises/Json/shapes.json

20 lines
362 B
JSON
Raw Normal View History

2023-09-12 19:17:10 +02:00
{
"shapes": [
{
"type": "rectangle",
"width": 5,
"height": 10,
"color": "red"
},
{
"type": "circle",
"radius": 7,
"color": "blue"
},
{
"type": "square",
"side": 4,
"color": "green"
}
]
}