6 lines
66 B
JavaScript
Vendored
6 lines
66 B
JavaScript
Vendored
class E {
|
|
constructor(x, y) {
|
|
this.t = x + y;
|
|
}
|
|
}
|