The toString() method is being overridden to provide a meaningful description of a structure
content.
Given the following program:
module test
struct Point = { x, y }
function main = |args| {
println(Point(1, 2))
}running it prints the following console output:
struct Point{x=1, y=2}