forked from JavaTX/JavaCompilerCore
8 lines
63 B
Plaintext
8 lines
63 B
Plaintext
|
class Expressions{
|
||
|
|
||
|
void test(){
|
||
|
var x = 2;
|
||
|
x = x + 2;
|
||
|
}
|
||
|
|
||
|
}
|