Skip to content

Latest commit

 

History

History
12 lines (11 loc) · 164 Bytes

README.md

File metadata and controls

12 lines (11 loc) · 164 Bytes

3.35

long rfun(unsigned long x) {
    if (x == 0) {
        return x;
    }
    unsigned long nx = x>>2;
    long rv = rfun(nx);
    return rv + x;
}