1 | | In CHICKEN 4, we get an error that `loop` is invoked without any arguments. This could point to a problem with the number of arguments the continuation is invoked versus how it is expected to be invoked. Strictly speaking, it shouldn't care about the number of arguments (given that it doesn't do anything with the value(s) returned by the `call/cc` call). |
| 1 | In CHICKEN 4, we get an error that `loop` is invoked without any arguments. If I change the call so it's `(loop loop)`, it does not error in C5. |
| 2 | |
| 3 | This could point to a problem with the number of arguments the continuation is invoked versus how it is expected to be invoked. Strictly speaking, it shouldn't care about the number of arguments (given that it doesn't do anything with the value(s) returned by the `call/cc` call). |