下面的代码我希望在命令窗口上打印出两行。为什么要打印3行?
@echo off
call:myDosFunc1 100 YeePEE
goto:yyy
:myDosFunc1 - here starts my function identified by it`s label
echo. it could do %~1 of things %~2.
:yyy
call:myDosFunc2 100 YeePEE
goto:ttt
:myDosFunc2 - here starts my function identified by it`s label
echo. it could do %~1 of things %~2.
:ttt