.if
if (@)
{
}
.
.else
else
{ @
}
.
.elseif
else if (@)
{
}
.
.ifelse
if (@)
{
}
else
{
}
.
.while
while (@)
{
}
.
.for
for (@)
{
}
.
.comment
/*
 * @
 */
.
.switch
switch (@)
{
    default:
    {
        break;
    }
}
.
.case
case @:
{
    break;
}
.
.main
#include <stdio.h>

main (int argc, char *argv[])
{
    @
}
.
.printf
printf ("@\\n");
.
.print
System.out.println("@");
.
