Advertisement
Guest User

Untitled

a guest
Oct 13th, 2019
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Batch 0.24 KB | None | 0 0
  1. set /p first=
  2. if ERRORLEVEL 1 goto :F
  3. set a='number'
  4. :S
  5. set /p second=
  6. if ERRORLEVEL 1 goto :N
  7. set b='number'
  8. goto :main
  9. echo %a%
  10. echo %b%
  11. :F
  12.     set a='string'
  13.     goto :S
  14. :N
  15.    set b='string'
  16.    goto main
  17. :main
  18. echo %a%
  19. echo %b%
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement