Files
FoxLang/script.fox
T
2025-12-25 12:36:05 +05:00

15 lines
199 B
Plaintext

{
print("=== Welcome to FoxLang ===");
print("Math test:");
print(20 + 30 * 2);
print("Type something:");
print(input());
{
print("I am inside a block!");
}
}