22 lines
198 B
Plaintext
Raw Normal View History

2017-05-03 02:17:37 +02:00
class Main {
2017-05-05 13:04:03 +02:00
main () { return new A().mt( new MyInteger(), new MyInteger() , new MyInteger() ); }
2017-05-03 02:17:37 +02:00
}
class A{
mt(x,y,z) { return x.sub(y).add(z); }
}
class MyInteger {
}
2017-05-03 10:54:39 +02:00
class MyList {
2017-05-03 02:17:37 +02:00
2017-05-03 10:54:39 +02:00
}
2017-05-03 02:17:37 +02:00