[Mercury Feature Request] JSON Literals

I’d like to see JSON literals in Mercury - like Anthony D Green proposed.

See: https://anthonydgreen.net/2019/03/11/json-aficionados-wanted/

Interesting, but I think the json code should be inside a block like this, so it’s even more readable, where the json starts and ends:
Console.WriteLine(Json
{
“Country”: “Brazil”,
“Value”: 10,
}
EndJson)

Dim value = Json
{
“Car”: “Ferrary”,
“Year”: 2015,
}
EndJson