last updated: 2026-05-15 22:05:48 -0700
commit: b2cc61a
learning a lot about trackfm design

AIFM

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;
}