14 lines
116 B
Plaintext
14 lines
116 B
Plaintext
|
class UsecaseSix{
|
||
|
|
||
|
umu(Character c){
|
||
|
x;
|
||
|
return x;
|
||
|
}
|
||
|
|
||
|
void foo(bar){
|
||
|
y;
|
||
|
y = 5;
|
||
|
y = this.umu(bar);
|
||
|
}
|
||
|
|
||
|
}
|