ERROR: incomplete parse at: (0 2 "42f" "failed char pred")
called from <anonymous> on line 1292 of file /usr/share/chibi/init-7.scm
called from <anonymous> on line 821 of file /usr/share/chibi/init-7.scm
Since the car of the list in the error message is the line number, I would have expected the output to be:
Since the error occurs on the first line of input. However, it seems that chibi-scheme starts counting line numbers at zero (which I would argue is at the very least unconventional). Is it intentional that line numbers start at zero?
Consider the following chibi program:
This outputs the following error:
Since the
car
of the list in the error message is the line number, I would have expected the output to be:Since the error occurs on the first line of input. However, it seems that chibi-scheme starts counting line numbers at zero (which I would argue is at the very least unconventional). Is it intentional that line numbers start at zero?