A-M baby
This commit is contained in:
parent
764da6cbbb
commit
db842d013d
19005 changed files with 197040 additions and 7 deletions
12
Task/Loops-For/Batch-File/loops-for.bat
Normal file
12
Task/Loops-For/Batch-File/loops-for.bat
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
@ECHO OFF
|
||||
SETLOCAL ENABLEDELAYEDEXPANSION
|
||||
|
||||
for /l %%i in (1,1,5) do (
|
||||
SET line=
|
||||
for /l %%j in (1,1,%%i) do (
|
||||
SET line=!line!*
|
||||
)
|
||||
ECHO !line!
|
||||
)
|
||||
|
||||
ENDLOCAL
|
||||
Loading…
Add table
Add a link
Reference in a new issue