mirror of
https://github.com/ASDjonok/OOP_IO-2x_2023.git
synced 2026-04-21 21:34:35 +03:00
11 lines
226 B
Java
11 lines
226 B
Java
package encapsulationInheritancePolymorphism;
|
|
|
|
public class EncapsulationInheritancePolymorphism {
|
|
|
|
public static void main(String[] args) {
|
|
int a = 1;
|
|
// var b = 2;
|
|
// System.out.println(b);
|
|
}
|
|
}
|