about summary refs log tree commit diff stats
path: root/js/scripting-lang/scratch_tests/test_t_namespace.txt
diff options
context:
space:
mode:
Diffstat (limited to 'js/scripting-lang/scratch_tests/test_t_namespace.txt')
-rw-r--r--js/scripting-lang/scratch_tests/test_t_namespace.txt11
1 files changed, 0 insertions, 11 deletions
diff --git a/js/scripting-lang/scratch_tests/test_t_namespace.txt b/js/scripting-lang/scratch_tests/test_t_namespace.txt
deleted file mode 100644
index 421655b..0000000
--- a/js/scripting-lang/scratch_tests/test_t_namespace.txt
+++ /dev/null
@@ -1,11 +0,0 @@
-/* Simple test for t namespace */
-
-numbers : {1, 2, 3, 4, 5};
-double : x -> x * 2;
-
-/* Test t.map */
-t_doubled : t.map @double numbers;
-first : t_doubled[1];
-..assert first = 2;
-
-..out "T namespace test completed"; 
\ No newline at end of file