diff --git a/scripts/function_decl2.rhai b/scripts/function_decl2.rhai index ae14c454..99507209 100644 --- a/scripts/function_decl2.rhai +++ b/scripts/function_decl2.rhai @@ -9,6 +9,6 @@ fn addme(a, b) { let result = addme(a, 4); -print(!addme(a, 4) should be 46: ${result}``); +print(`addme(a, 4) should be 46: ${result}`); print(`a should still be 3: ${a}`); // should print 3 - 'a' is never changed