All Questions
2 questions
0
votes
1
answer
793
views
Call function not working?
I'm making a Choose Your Own Adventure game in batch, and I want to have stats in it to keep track of how your doing in the game. I want to display the stats, but I have to do it each time I have a ...
1
vote
2
answers
951
views
BATCH bat1.bat Call external function in bat2.bat
I would like to have two bat files.
BAT1 : list of functions
BAT2 : calls one specific function in BAT1.
BAT1 :
@echo off
:ALPHA
echo ALPHA
goto ...