// This is a completely overwritten 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 COMPLETELY OVERWRITTEN script!" } // 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 } // Another new function added during hot reload fn divide(a, b) { a / b }