Plan for tuesday

What’s the plan for Tuesday? We’re going to consider the C function(s):

int f(int b) {
    printf("%d\n", b);
}

int main() {
    f(7);
    f(8);
}

And ask/answer: “What are the values passed into printf?”.

Might cheap out and do this in javascript instead. May or may not attempt to use CodeQL to do this.