b2cc61a
Nathaniel Chappelle
2026-05-15
Example of for loop in AIFM:
int sum ( RemoteArray * array, int n) { int sum = 0; for (int i = 0; i < n; i++) { DerefScope scope; sum += array.at(scope, i); } return sum; }