summaryrefslogtreecommitdiff
path: root/tests/unit_tests/test_double_Disp.sci
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unit_tests/test_double_Disp.sci')
-rw-r--r--tests/unit_tests/test_double_Disp.sci13
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/unit_tests/test_double_Disp.sci b/tests/unit_tests/test_double_Disp.sci
new file mode 100644
index 00000000..4d1f7185
--- /dev/null
+++ b/tests/unit_tests/test_double_Disp.sci
@@ -0,0 +1,13 @@
+function test_double_Disp ()
+
+ disp(4.5);
+ disp(4+3*%i);
+ disp("a");
+
+ disp([1 2 3 4 5 ; 6 7 8 9 10]);
+ disp(%i*[1 2 3 4 5 ; 6 7 8 9 10]);
+ disp("plop");
+
+
+endfunction
+