diff options
Diffstat (limited to 'js/scripting-lang/scratch_tests/test_t_access_simple.txt')
-rw-r--r-- | js/scripting-lang/scratch_tests/test_t_access_simple.txt | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/js/scripting-lang/scratch_tests/test_t_access_simple.txt b/js/scripting-lang/scratch_tests/test_t_access_simple.txt new file mode 100644 index 0000000..bc233c1 --- /dev/null +++ b/js/scripting-lang/scratch_tests/test_t_access_simple.txt @@ -0,0 +1,13 @@ +/* Simple test for t. namespace access */ + +/* Basic table creation */ +numbers : {1, 2, 3}; + +/* Test t.map access */ +t_map_test : t.map; +/* Expected: function */ + +/* Output results */ +..out "=== T. ACCESS TEST ==="; +..out "t.map:"; +..out t_map_test; \ No newline at end of file |