Concept:
Abstract syntax
Headline
Syntax aimed at processing as opposed to reading and writing
Illustration
The Java assignment "x = 42" would be rendered in some possible XML-based abstract syntax like this:
<assign>
<lhs>
<id>x</id>
</lhs>
<rhs>
<constant>42</constant>
</rhs>
</assign>
For a bit more involved example, consider first this Java statement sequence in concrete syntax:
x = 42; System.out.println(x);
In XML-based abstract syntax:
<sequence>
<assign>
<lhs>
<id>x</id>
</lhs>
<rhs>
<constant>42</constant>
</rhs>
</assign>
<methodcall>
<receiver>
<static>
<id>System</id>
<id>out</id>
</static>
</receiver>
<methodname>
<id>println</id>
</methodname>
<arguments>
<id>x</id>
</arguments>
</methodcall>
</sequence>
Backlinks
User contributions
User edits
Syntax for editing wiki
For you are available next options:will make text bold.
will make text italic.
will make text underlined.
will make text striked.
will allow you to paste code headline into the page.
will allow you to link into the page.
will allow you to paste code with syntax highlight into the page. You will need to define used programming language.
will allow you to paste image into the page.
is list with bullets.
is list with numbers.
will allow your to insert slideshare presentation into the page. You need to copy link to presentation and insert it as parameter in this tag.
will allow your to insert youtube video into the page. You need to copy link to youtube page with video and insert it as parameter in this tag.
will allow your to insert code snippets from @worker.
Syntax for editing wiki
For you are available next options:will make text bold.
will make text italic.
will make text underlined.
will make text striked.
will allow you to paste code headline into the page.
will allow you to link into the page.
will allow you to paste code with syntax highlight into the page. You will need to define used programming language.
will allow you to paste image into the page.
is list with bullets.
is list with numbers.
will allow your to insert slideshare presentation into the page. You need to copy link to presentation and insert it as parameter in this tag.
will allow your to insert youtube video into the page. You need to copy link to youtube page with video and insert it as parameter in this tag.
will allow your to insert code snippets from @worker.