// Utility functions for the hot reload example // A function to format a greeting message fn format_greeting(name) { "Greetings, " + name + "! (from utils.rhai)" } // A function to perform a calculation // Keep it simple to avoid type issues fn calculate(a, b) { // Simple integer arithmetic (a * b) + 10 }