forked from JavaTX/JavaCompilerCore
21 lines
183 B
Plaintext
21 lines
183 B
Plaintext
|
|
||
|
|
||
|
|
||
|
class Main {
|
||
|
main () { return new A().mt( new MyInteger() , new MyInteger() , new MyInteger() ); }
|
||
|
}
|
||
|
|
||
|
|
||
|
class A{
|
||
|
mt(x,y,z) { return x.sub(y).add(z); }
|
||
|
}
|
||
|
|
||
|
|
||
|
class MyInteger {
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
|