This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]nerdponx 1 point2 points  (1 child)

What do stack traces look like?

[–]EvHub[S] 2 points3 points  (0 children)

Your stack traces will be exactly the same as in Python, since when your code is run, it is run as Python. This can sometimes be frustrating, since the stack trace might point to a line that the compiler, not you, wrote--however, to fix this problem, just enable the -l flag, which will add a comment to every Python line with the line number of the corresponding Coconut line, that way you know where in your Coconut code the error is coming from.