Skip to content

Commit 6a429fb

Browse files
committed
Migrate development environment from Windows to macOS and continue project updates
- Shifted primary development environment from Windows to macOS to ensure better performance, stability, and streamlined workflow for Java development. - Removed OS-specific metadata and ensured platform-agnostic project compatibility. - Normalized line endings to LF for cross-platform consistency. - Verified and adjusted file paths, permissions, and encoding settings to suit macOS environment. - Cleaned up unnecessary Windows-generated files and updated Git configuration accordingly. - Future commits and development will now be managed entirely from macOS. This migration ensures a cleaner, more consistent setup moving forward and prepares the project for scalable development across Unix-based systems. Future development will continue on macOS for a smoother, Unix-based experience. Signed-off-by: Someshdiwan <[email protected]>
1 parent cd6b8a0 commit 6a429fb

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
interface WaterBottle{
2+
String Color = "Blue";
3+
4+
void fillUp();
5+
6+
void poutOut();
7+
}
8+
9+
public class Practice implements WaterBottle {
10+
public static void main(String[] args) {
11+
System.out.println(Color);
12+
13+
Practice ex = new Practice();
14+
ex.fillUp();
15+
16+
ex.poutOut();
17+
}
18+
19+
@Override
20+
public void fillUp() {
21+
System.out.println("it is Filled.");
22+
}
23+
24+
@Override
25+
public void poutOut() {
26+
System.out.println("Pour out");
27+
}
28+
}
29+
30+
31+

0 commit comments

Comments
 (0)