// This is a modified script // The AST will be replaced with this new version // A simple greeting function with modified message fn greet(name) { "Hello, " + name + "! This is the MODIFIED script! Hot reloading works!" } // A function to calculate the sum of two numbers fn add(a, b) { a + b } // A new function added during hot reload fn multiply(a, b) { a * b } // A new function added during hot reload fn divide(a, b) { a / b }