Data update

This commit is contained in:
Ingy döt Net 2026-02-01 16:33:20 -08:00
parent 5150844a7d
commit 4bb20c9b71
7735 changed files with 38060 additions and 199180 deletions

View file

@ -1,13 +0,0 @@
'mung.vbs
option explicit
dim c
if wscript.arguments.count = 1 then
c = wscript.arguments(0)
c = c + 1
else
c = 0
end if
wscript.echo "[Depth",c & "] Mung until no good."
CreateObject("WScript.Shell").Run "cscript Mung.vbs " & c, 1, true
wscript.echo "[Depth",c & "] no good."

View file

@ -1,14 +0,0 @@
'mung.vbs
option explicit
sub mung(c)
dim n
n=c+1
wscript.echo "[Level",n & "] Mung until no good"
on error resume next
mung n
on error goto 0
wscript.echo "[Level",n & "] no good"
end sub
mung 0