13 lines
411 B
Plaintext
13 lines
411 B
Plaintext
// Simple test script for circle initialization
|
|
print("Initialization script running for circle: " + CIRCLE_PUBLIC_KEY);
|
|
print("Called by: " + CALLER_PUBLIC_KEY);
|
|
|
|
// Set some test variables
|
|
let test_value = 42;
|
|
let test_message = "Hello from " + CIRCLE_PUBLIC_KEY;
|
|
|
|
print("Test value: " + test_value);
|
|
print("Test message: " + test_message);
|
|
|
|
// Return a success message
|
|
"Initialization completed successfully" |