tags:

views:

23

answers:

1

can i see the value of variable using ECHO command? I tried this way but didn't work.

@echo off
set _src = String
echo %_src%
pause
+3  A: 

Take the spaces out either side of your equals sign and this should work.

David M