Break point

Hi everyOne,
Is it possible to create a break point in the console? (to see value of variables, …)?

I dev in Python, but if it does exist, it should work with all the langage I think.

It’s not possible on the site’s IDE. The best you can do is to print the variables on stderr.
But if you’re motivated, you can set up a local environment and so use your favorite IDE to set break points… It’s not so hard for the puzzles, a little bit more for the multis…

1 Like

Indeed, it’s what I’m doing on pycharm.
I’m solving a labyrinth, and for no reason, kirck jump on the wall at the 3rd puzzle, 357nd round.

Thx for your answer.