Name: Anonymous 2018-11-27 19:34
XML makes Java the acceptable Lisp
<define name="hax">
<arg>my</arg>
<call>
<var name="display" />
<var name="my" />
</call>
<call>
<var name="display" />
<string val="XML makes Java the acceptable Lisp />
</call>
<call>
<var name="newline" />
</call>
</define>
0xf0l3nfa93n33n2fa
struct hax {
display @0 :"XML makes Java the acceptable Lisp";
my @1 :"";
newline @2 : "
";
}
@Define(
executionOrder = {
call("my"),
call("msg"),
call(
external("newline")
)
}
)
public final class Hax {
@Arg
private Object my;
@Call("display")
private Object my() {
return my;
}
@Call("display")
private String msg() {
return "Java annotations make Java the acceptable LIPTH";
}
}