Sha256: 6adfa179eea3b350e54600310aa243c653e6b5800cf78e8c5dcac0b3becb7a01

Contents?: true

Size: 435 Bytes

Versions: 5

Compression:

Stored size: 435 Bytes

Contents

@ECHO OFF

:master
	:confirm
		CHOICE /C YN "Would you like to play Rock Paper Scissors?"
		if "%ERRORLEVEL%"=="1" CALL:process
		if "%ERRORLEVEL%"=="2" CALL:exiting
	GOTO:EOF
	REM start process
	:process
		START cmd.exe /K PlayRockPaperScissorsGame
		IF %ERRORLEVEL% EQU 9009 (
			ECHO error - cmd.exe file not found in your PATH
		)
	GOTO:EOF
	REM end process

	:exiting
		EXIT
	GOTO:EOF

GOTO:EOF

CALL:master

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
PlayRockPaperScissorsGame-1.7.5 exec/run.bat
PlayRockPaperScissorsGame-1.7.4 exec/run.bat
PlayRockPaperScissorsGame-1.7.3 exec/run.bat
PlayRockPaperScissorsGame-1.7.2 exec/run.bat
PlayRockPaperScissorsGame-1.7.1 exec/run.bat