Are there any actual programmers left here? Shall we have a small /proggles~/ challenge to incite discussion?
Name:
Anonymous2020-02-28 10:26
>>27 error handling is important, and if the language uses exceptions for that then yes, you need to think about exceptions. Java is ok about exceptions because you are forced to handle most of them at compile time. in C#, compiler doesn't give a shit and then your're are runtime blows up, which sucks.