about summary refs log tree commit diff stats
path: root/js/scripting-lang/scratch_tests/test_table_structure.txt
diff options
context:
space:
mode:
Diffstat (limited to 'js/scripting-lang/scratch_tests/test_table_structure.txt')
-rw-r--r--js/scripting-lang/scratch_tests/test_table_structure.txt16
1 files changed, 0 insertions, 16 deletions
diff --git a/js/scripting-lang/scratch_tests/test_table_structure.txt b/js/scripting-lang/scratch_tests/test_table_structure.txt
deleted file mode 100644
index fc122eb..0000000
--- a/js/scripting-lang/scratch_tests/test_table_structure.txt
+++ /dev/null
@@ -1,16 +0,0 @@
-/* Test table structure */
-
-numbers : {1, 2, 3, 4, 5};
-first : numbers[1];
-second : numbers[2];
-..assert first = 1;
-..assert second = 2;
-
-double : x -> x * 2;
-doubled : map @double numbers;
-doubled_first : doubled[1];
-doubled_second : doubled[2];
-..assert doubled_first = 2;
-..assert doubled_second = 4;
-
-..out "Table structure test completed"; 
\ No newline at end of file