5 lines
105 B
Plaintext
5 lines
105 B
Plaintext
|
class AddFloatOperator{
|
||
|
Float method(Float x, Float y){
|
||
|
return x + y;
|
||
|
}
|
||
|
}
|