10 lines
138 B
Plaintext
Raw Normal View History

2013-10-18 13:33:46 +02:00
class Instanceof{
method(mitgift){
i;
i = new Integer();
if(mitgift == Instanceof){
return mitgift;
}
else return null;
}
}