about summary refs log tree commit diff stats
path: root/js/scripting-lang/scratch_tests/test_nested_debug.txt
diff options
context:
space:
mode:
Diffstat (limited to 'js/scripting-lang/scratch_tests/test_nested_debug.txt')
-rw-r--r--js/scripting-lang/scratch_tests/test_nested_debug.txt8
1 files changed, 8 insertions, 0 deletions
diff --git a/js/scripting-lang/scratch_tests/test_nested_debug.txt b/js/scripting-lang/scratch_tests/test_nested_debug.txt
new file mode 100644
index 0000000..ad68670
--- /dev/null
+++ b/js/scripting-lang/scratch_tests/test_nested_debug.txt
@@ -0,0 +1,8 @@
+nested_func1 : x -> x + 1;
+nested_func2 : x -> nested_func1 x;
+nested_func3 : x -> nested_func2 x;
+nested_func4 : x -> nested_func3 x;
+nested_func5 : x -> nested_func4 x;
+
+deep_nested : nested_func5 10;
+..out deep_nested; 
\ No newline at end of file