!747 m { static int score, max = 3; static boolean online; p { print("Online check!"); score = 0; check("tinybrain.de"); check("google.com"); check("bing.com"); online = score > 0; print("Score: " + score + "/3"); } static void check(S server) { boolean online = checkIfHttpServerIsOnline("tinybrain.de") == null; if (online) ++score; print(server + ": " + (online ? "ONLINE!" : "OFFLINE?")); } }