diff options
Diffstat (limited to 'js/scripting-lang/scratch_tests/test_debug_table.txt')
-rw-r--r-- | js/scripting-lang/scratch_tests/test_debug_table.txt | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/js/scripting-lang/scratch_tests/test_debug_table.txt b/js/scripting-lang/scratch_tests/test_debug_table.txt new file mode 100644 index 0000000..4306a4c --- /dev/null +++ b/js/scripting-lang/scratch_tests/test_debug_table.txt @@ -0,0 +1,11 @@ +/* Debug table function parsing */ + +// Test with debug output +table : { + func: x -> x, + value: 42 +}; + +// Just try to access the value first +..out "=== DEBUG TABLE ==="; +..out table.value; \ No newline at end of file |