JavaPatternMatching/examples/hoth/Test2.jav

23 lines
202 B
Plaintext
Raw Normal View History

2013-10-18 11:33:46 +00:00
class Test2{
String b="33";
foo(){
ret;
String g="w";
{
ret = 5;
g="5";
}
ret = 3+4;
b="22";
return ret;
}
int neufoo(a)
{
tt;
tt=foo();
a="ww";
return 3;
}
}