This should be Python:
class A(object):
pass
def a_func(arg):
return A()
This should be some Java code:
/**
* A doc string
*/
public static Object aMethod(int arg) {
Object a = new Object();
return a;
}
And finally XML:
<element attribute="value">
<nested attribute="value">
</nested>
</element>
That is all.
No comments:
Post a Comment