updated actor to following naming conventions
This commit is contained in:
13
examples/scripts/test_logging.rhai
Normal file
13
examples/scripts/test_logging.rhai
Normal file
@@ -0,0 +1,13 @@
|
||||
// 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"
|
Reference in New Issue
Block a user