// Тест логических операторов using net; bool isOnline = true; bool hasError = false; print("Online: " + isOnline); print("Error: " + hasError); if (isOnline && !hasError) { print("System OK"); } string response = http_get("test.com"); print("Response: " + response); fox();