Changes between Initial Version and Version 1 of Ticket #1601, comment 3


Ignore:
Timestamp:
04/07/19 16:56:36 (5 years ago)
Author:
sjamaan
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #1601, comment 3

    initial v1  
    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).
     1In 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
     3This 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).