JavaTXCompilerInJavaTX/examples/achim/Types.jav
2013-10-18 13:33:46 +02:00

31 lines
279 B
Java
Executable File

class Types{
test(b, c, d, f, i, l, s){
b;
b2;
c;
d;
f;
i;
l;
s;
b = true;
if(b){
b=false;
}
if(true)
b2 = b;
i = 65;
c = 'a';
f = i/2;
d = "hallo";
s = -3;
l = d.substring(2,1);
boolean bo;
char c;
int i;
return i;
}
}