it is an infinite loop. If you were to convert it to C, it would look like this: ```c void run(int* mem) { *mem++; while(*mem) { mem++; *mem++; }; } ``` which is very clearly not a fork bomb