i've this dictionary:
appointment = { soccer = {
day : 20,
month : april
}
}
how can i insert this dictio in the same structure?
appointment = { gym = {
day : 5,
month : may
}
}
expected output:
appointment = { soccer = {
day : 20,
month : april
},
gym = {
day : 5,
month : may
}
}
how can i connect this dictio by code?