13 lines
498 B
Plaintext
13 lines
498 B
Plaintext
// test_logging.rhai - Simple test script for logging verification
|
|
|
|
print("=== LOGGING TEST SCRIPT ===");
|
|
print("This is a simple test to verify Rhai logging is working");
|
|
print("Line 1: Hello from Rhai!");
|
|
print("Line 2: Testing print statements");
|
|
print("Line 3: Numbers work too: " + 42);
|
|
print("Line 4: Boolean values: " + true);
|
|
print("Line 5: String concatenation: " + "works" + " " + "perfectly");
|
|
print("=== END OF TEST ===");
|
|
|
|
// Return a simple value
|
|
"Logging test completed successfully" |