Results 2 comments of olivier

hello thank you for your reply. I set "stopOnEntry" to true, and now I partially manage to debug my program. But there's still some caveats : - I set a...

yes, here it is: ``` let year = 20126 let leap = (year mod 4 = 0 && year mod 100 0) || year mod 400 = 0 let msg...