// main.rhai - Main script that imports module1 import "module1" as m1; // Call the calculate function from module1, which in turn calls multiply from module2 let answer = m1::calculate(); // Return the answer answer