11 lines
69 B
Plaintext
Raw Normal View History

2015-07-14 14:49:46 +02:00
class Assign{
method() {a;
a = 20;
b;
b=59;
return a + b;
}
}