Jan Grau

Results 4 comments of Jan Grau

# Feedback Here is my feedback. I already know Rust, but I never looked at `rustlings` before. I hope this is not too detailed. 😅 I have written down everything...

I used `[email protected]` ## 2) Encoding/Display error > This is a problem with the used terminal (exe.cmd?). Yep. This seems to be an issue of `cmd`. ## 3) Invisible input...

> The reason why some exercises like `quiz1` were not shown to you in the right order is that you jumped to the next file without entering n for telling...

You also need to take account exceptions/try..catch statements: ```typescript function x(a: number) { throw "Error"; } let n = 5; try { x(n); n++; } catch { } console.log(n); ```...