about summary refs log tree commit diff stats
path: root/js/scripting-lang/scratch_tests/test_nested_table.txt
diff options
context:
space:
mode:
Diffstat (limited to 'js/scripting-lang/scratch_tests/test_nested_table.txt')
-rw-r--r--js/scripting-lang/scratch_tests/test_nested_table.txt10
1 files changed, 10 insertions, 0 deletions
diff --git a/js/scripting-lang/scratch_tests/test_nested_table.txt b/js/scripting-lang/scratch_tests/test_nested_table.txt
new file mode 100644
index 0000000..9895e4e
--- /dev/null
+++ b/js/scripting-lang/scratch_tests/test_nested_table.txt
@@ -0,0 +1,10 @@
+/* Test nested table literals */
+nested_table : {
+    outer: {
+        inner: {
+            value: 42
+        }
+    }
+};
+
+..out "nested_table created successfully"; 
\ No newline at end of file