Revert "Done lab 1-3"

This reverts commit 29e63163a4.
This commit is contained in:
Oleksii Aleshchenko
2023-04-04 22:33:00 +03:00
parent 1e6825d7d4
commit 81ac59840f
48 changed files with 605 additions and 205 deletions

13
src/test/A.java Normal file
View File

@@ -0,0 +1,13 @@
package test;
public class A {
/*private*/ int f/* = 3*/;
public int getF() {
return f;
}
public void setF(int f) {
this.f = f;
}
}