- File:
-
- 1 edited
-
tests/array-container/array-basic.cfa (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
tests/array-container/array-basic.cfa
r1d71208 ra5e26821 78 78 } 79 79 80 forall( A & | ar(A, float) )80 forall( [N], A & | ar(A, float, N) ) 81 81 float total1d_hi( A & a ) { 82 82 float total = 0.0f; 83 for (i; a`len)83 for (i; N) 84 84 total += a[i]; 85 85 return total;
Note:
See TracChangeset
for help on using the changeset viewer.