@varriount let's not pollute #internals 🙂 > I'm curious what you think about errors-as-part-of-return-values (a la Go). in terms of lines of code or "noise", they come out about the same on average but it depends on many other things - in our code, there's a slight advantage to Result usually because we tend to want to associate logic with error outcomes - try/except is quite heavy syntax-wise) if you actually take care to handle errors - if you don't handle errors (ie crash or don't care), exceptions win of course