Re: C-Style Comments
Lawrence D'Oliveiro <ldo-kC51rjc0cqs1dNLGKZg6taU/[email protected]>
| Newsgroups | gmane.comp.multimedia.dvdauthor.user |
|---|---|
| Message-ID | <[email protected]> |
On 02/05/10 00:05, I wrote:
> You can now use C-style /* ... */ comments in the VM language.
>
> Oh, and you can now also include<![CDATA[ ... ]]> sections as well.
For example, instead of
if (g0 lt 3 and g1 le 4)
{
g2 = 5; <!-- do something useless -->
}
you can also write
<![CDATA[
if (g0 < 3 && g1 <= 4)
{
g2 = 5; /* do something useless */
}
]]>
------------------------------------------------------------------------------