!752 p { File dir = getProgramFile("yo"); File theZip = getProgramFile("adjectives.zip"); for (int c = 0; c < 26; c++) { char ch = (char) ('a'+c); S url = "http://www.listofadjectives.org/" + ch + ".html"; S text = loadPage(url); saveTextFile(new File(dir, ch + "a.html"), text); } dir2zip(dir, theZip); print(theZip.length()); print(theZip); }