Files
FoxLang/test_logical.fox
T

18 lines
308 B
Plaintext

// Тест логических операторов
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();