10 lines
117 B
Plaintext
Raw Normal View History

2024-05-02 23:04:07 +02:00
class Assign {
assign(x, y) {
x = y;
}
assign2(x, y) {
assign(x,y);
}
}