22 lines
199 B
Plaintext
Raw Normal View History

2017-05-03 02:17:37 +02:00
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 {
}
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