diff options
Diffstat (limited to 'js/scripting-lang/tests/06_function_definitions.txt')
-rw-r--r-- | js/scripting-lang/tests/06_function_definitions.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/js/scripting-lang/tests/06_function_definitions.txt b/js/scripting-lang/tests/06_function_definitions.txt index a34da72..b0e591f 100644 --- a/js/scripting-lang/tests/06_function_definitions.txt +++ b/js/scripting-lang/tests/06_function_definitions.txt @@ -23,8 +23,8 @@ result5 : identity_func 42; ..assert result5 = 42; /* Test function calls with parentheses */ -result6 : add_func (3 + 2) (4 + 1); -result7 : multiply_func (double_func 3) (square_func 2); +result6 : add_func @(3 + 2) @(4 + 1); +result7 : multiply_func @(double_func 3) @(square_func 2); ..assert result6 = 10; ..assert result7 = 24; |