XML Literal

no less(<) and great(>) operator, use <| and |> instead.

XML Comment

x"""
<!-- This is comment -->
"""

XML Class

x"""
<Tag attribute a=1>
    text
<Tag/>
"""

desugars to

Tag(attribute: true, a: 1) {
    "text"
}

XML Inline

x"""
<Tag attribute a=1/>
"""

desugars to

Tag(attribute: true, a: 1);