Data update

This commit is contained in:
Ingy döt Net 2026-04-30 12:34:36 -04:00
parent 4bb20c9b71
commit cbaf4c4b64
12390 changed files with 318560 additions and 27248 deletions

View file

@ -1,16 +1,16 @@
@echo off
setlocal enabledelayedexpansion
::Initializing the pseudo-array...
::Initializing the pseudo-array...
set "pseudo=Alpha Beta Gamma Delta Epsilon"
set cnt=0 & for %%P in (!pseudo!) do (
set /a cnt+=1
set "pseudo[!cnt!]=%%P"
set /a cnt+=1
set "pseudo[!cnt!]=%%P"
)
::Do the random thing...
::Do the random thing...
set /a rndInt=%random% %% cnt +1
::Print the element corresponding to rndint...
::Print the element corresponding to rndint...
echo.!pseudo[%rndInt%]!
pause
exit /b