Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
|
|
@ -0,0 +1,14 @@
|
|||
@echo off
|
||||
setlocal enableDelayedExpansion
|
||||
|
||||
set /p "name=Enter a variable name: "
|
||||
set /p "value=Enter a value: "
|
||||
|
||||
::Create the variable and set its value
|
||||
set "%name%=%value%"
|
||||
|
||||
::Display the value without delayed expansion
|
||||
call echo %name%=%%%name%%%
|
||||
|
||||
::Display the value using delayed expansion
|
||||
echo %name%=!%name%!
|
||||
Loading…
Add table
Add a link
Reference in a new issue