Guest User

Untitled

a guest
Jul 9th, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. @echo off
  2.  
  3. call :testproc1 a b c
  4. call :testproc2 a b c
  5. echo %1 %2 %3
  6.  
  7. goto :EOF
  8.  
  9. :testproc1
  10. echo 1: %1 %2 %3
  11. goto :EOF
  12.  
  13. :testproc2
  14. echo 2: %1 %2 %3
  15. goto :EOF
Add Comment
Please, Sign In to add comment