aboutsummaryrefslogtreecommitdiff
path: root/contrib/bc/Test/aryprm.b
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/bc/Test/aryprm.b')
-rw-r--r--contrib/bc/Test/aryprm.b16
1 files changed, 0 insertions, 16 deletions
diff --git a/contrib/bc/Test/aryprm.b b/contrib/bc/Test/aryprm.b
deleted file mode 100644
index 9d3f95b8b8d4..000000000000
--- a/contrib/bc/Test/aryprm.b
+++ /dev/null
@@ -1,16 +0,0 @@
-define p ( x[] ) {
- auto i;
- for (i=0; i<10; i++) x[i];
-}
-
-define m ( x[] ) {
- auto i;
- for (i=0; i<10; i++) x[i] *= 2;
-}
-
-scale = 20;
-for (i=0; i<10; i++) a[i] = sqrt(i);
-
-p(a[]);
-m(a[]);
-p(a[]);