mirror of
https://github.com/Noratrieb/coldsquare.git
synced 2026-01-14 16:35:10 +01:00
13 lines
No EOL
208 B
Java
13 lines
No EOL
208 B
Java
class Test2 {
|
|
int myField;
|
|
|
|
public static void main(String[] args) {
|
|
int i = 0;
|
|
i++;
|
|
new Test2().print(i);
|
|
}
|
|
|
|
void print(int i) {
|
|
System.out.println(i);
|
|
}
|
|
} |