15 lines
199 B
Plaintext
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!");
|
|
}
|
|
|
|
}
|