forked from JavaTX/JavaCompilerCore
10 lines
112 B
Plaintext
10 lines
112 B
Plaintext
|
import java.lang.Integer;
|
||
|
|
||
|
public class Static {
|
||
|
static i = 20;
|
||
|
|
||
|
static m() {
|
||
|
return i;
|
||
|
}
|
||
|
}
|