Skip to content

Commit 6c3cdfc

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 c1141e2 commit 6c3cdfc

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
@echo off
2+
pushd "%~dp0"
3+
4+
:MENU
5+
cls
6+
echo =====================================================
7+
echo Java Tutorial - Operators Q&A Answer Page
8+
echo =====================================================
9+
echo 1. Open Oracle Operators Answer Page
10+
echo 2. Exit
11+
echo.
12+
set /p choice=Enter your choice [1-2]:
13+
14+
if "%choice%"=="1" start https://docs.oracle.com/javase/tutorial/java/nutsandbolts/QandE/answers_operators.html & goto MENU
15+
if "%choice%"=="2" goto END
16+
17+
echo.
18+
echo Invalid choice. Please select 1 or 2.
19+
pause
20+
goto MENU
21+
22+
:END
23+
echo Goodbye!
24+
pause
25+
26+
popd

0 commit comments

Comments
 (0)