summaryrefslogtreecommitdiff
path: root/apps/examples/bastest/tests/test24.bas
diff options
context:
space:
mode:
Diffstat (limited to 'apps/examples/bastest/tests/test24.bas')
-rw-r--r--apps/examples/bastest/tests/test24.bas8
1 files changed, 8 insertions, 0 deletions
diff --git a/apps/examples/bastest/tests/test24.bas b/apps/examples/bastest/tests/test24.bas
new file mode 100644
index 000000000..95678830b
--- /dev/null
+++ b/apps/examples/bastest/tests/test24.bas
@@ -0,0 +1,8 @@
+10 dim b(2,3),c(3,2)
+20 for i=1 to 2 : for j=1 to 3 : read b(i,j) : next : next
+30 for i=1 to 3 : for j=1 to 2 : read c(i,j) : next : next
+40 mat a=b*c
+50 mat print b,c,a
+60 data 1,2,3,3,2,1
+70 data 1,2,2,1,3,3
+