Skip to content

Commit 090d125

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 041ed05 commit 090d125

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
class Bonus
2+
{
3+
int bonus = 10000;
4+
}
5+
6+
class Programmer extends Bonus
7+
{
8+
int basicsal = 50000;
9+
int totsal;
10+
void salary()
11+
{
12+
totsal = basicsal + bonus;
13+
System.out.println(totsal);
14+
}
15+
}
16+
17+
class InheritBonus
18+
{
19+
public static void main(String[] args)
20+
{
21+
Programmer p = new Programmer();
22+
p.salary();
23+
}
24+
}

0 commit comments

Comments
 (0)