1
package montimath.vanilla;
2
 
3
script Example
4
  Q(0 : 10)^{1, 5} c = 1:2:10;
5
  Q x = 0;
6
  Q y = 0;
7
  for i = c
8
    for j = c
9
      y += 1 / (c(x) * j^i);
10
    end;
11
    x += 1;
12
  end;
13
end
1
package montimath.vanilla;
2
 
3
script Example
4
  
5
  
6
  
7
  for 
8
    for 
9
      
10
    end;
11
    
12
  end;
13
end