// Utility functions for the hot reload example - MODIFIED VERSION // A function to format a greeting message fn format_greeting(name) { "ENHANCED Greetings, " + name + "! (from modified utils.rhai)" } // A function to perform a calculation // Keep it simple to avoid type issues fn calculate(a, b) { // Enhanced calculation with additional operations (a * b * 2) + 20 } // A new utility function fn format_message(text) { "*** " + text + " ***" }