Windows installer: Update texinfo.
[maxima.git] / share / contrib / gentran / test / type.mac
blob833332b719468841252798ca02f4824da4b3b772
1 gentranlang:fortran;
2 /* gentran knows about constants and implicit types in fortran */
4 gentran(i:5+j*2);
6 gentran(x:y/6-3);
8 /* types can also be explicitly declared */
9 gentran( type("implicit real*8", "a-h","o-z"),
10       type("real*8", m(4,4)),
11       for i:1 thru 4 do
12           for j:1 thru 4 do
13               if i=j
14                  then m[i,j] : 1.0
15                  else m[i,j] : 0.0,
16         type("integer", i,j));
18 gentran( type("double", x),
19          type("integer", y),
20          i:9*y,
21          x:7*x/u)$