summaryrefslogtreecommitdiffstats
path: root/contrib/bc/Test/aryprm.b
blob: 9d3f95b8b8d45a500f42c87b481a590798657c40 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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[]);
OpenPOWER on IntegriCloud