Où retourne GOTO: EOF?

J'essaie de comprendre où dans le code fait exactement GOTO :EOF retour?

Voici le code:

SET count=1 
FOR /f "tokens=*" %%G IN (somefile.txt) DO (call :subroutine "%%G") 
GOTO :EOF

:subroutine  
echo %count%:%1  
set /a count+=1  
GOTO :EOF

source d'informationauteur s6398197atuser