!747 m { static S snippetID = "#1001048"; // just a test program static boolean testRun; p { for (S arg: args) if (arg.equals("-test")) testRun = true; else snippetID = arg; File dir = programDir(snippetID); print("Clearing: " + dir); deleteDirectory(dir, true, testRun); if (!testRun) if (dir.exists()) print("Problem? Directory still exists."); else print("Done, ok, directory gone. Hopefully it wasn't important!"); } }