Alright, so lets say we have a file called "lib.cmd" it contains
@echo off
GOTO:EXIT
:FUNCTION
echo something
GOTO:EOF
:EXIT
exit /b
Then we have a file called "init.cmd" it contains
@echo off
call lib.cmd
Is there anyway to access :FUNCTION inside of init.cmd? Like how bash uses "source" too run another bash file into the same process.