!7 p { testURL("http://ai1.lol"); } static bool testURL(S url) { print("Checking: " + url); int code = getURLReturnCode(url); S s = ""; bool ok = false; if (code == 200) { s = " => OK"; ok = true; } else s = " => ???"; print(" Code: " + code + s); ret ok; }