Re: How to bypass a runtime error ?

2020-05-28 Thread fredg
I have tried it, in many ways, with no luck :( Thanks for trying. ++

Re: How to bypass a runtime error ?

2020-05-28 Thread mratsim
`try` / `except` or `try`/`finally` [https://nim-lang.org/docs/tut2.html#exceptions-try-statement](https://nim-lang.org/docs/tut2.html#exceptions-try-statement) from strutils import parseInt # read the first two lines of a text file that should contain numbers # and trie

How to bypass a runtime error ?

2020-05-28 Thread fredg
Hello, I am trying to build a list of mirrors and append the date when the mirror has been refreshed. (For doing that I take the last-modified header of a file) The program built without errors. The program begin to parse and print but, it ends if it meet an error during the parse. Is there a