This is a fun little script I made in my Scripting and Automation class showcasing my batch file knowledge.
@echo off
title Review Assignment 2 Batch File 2
echo Let's play a game
set guess= 999
set /A num= (%random% %% 5)+1
:1
echo Guess a number between 1 and 5
set /p guess=
if NOT %guess% == %num% echo Try again & goto 1
echo You guessed it!
pause
color 4F
echo On to the next game!
pause
echo Actually I'm hungry
set food= none
:choice
echo Are you craving pizza, tacos, or burgers?
set /p food=
if %food% == pizza goto pizza
if %food% == tacos goto tacos
if %food% == burgers goto burgers
echo That's not one of the choices
goto choice
:pizza
echo Let's order some pizza!
pause
start www.rockyrococo.com
exit
:tacos
echo Let's order some tacos!
pause
start www.tacobell.com
exit
:burgers
echo Let's order some burgers!
pause
start www.milwaukeeburgercompany.com
exit