Comment by regularfry
1 month ago
I'll often use `result` as the return value in other languages, largely because I learned it in Delphi 25 years ago. It doesn't have the automatic return value semantics elsewhere, so you also need `return result` or whatever, but it's crystal clear what the intent is. I prefer it for that reason alone.
That’s what I do too, but it never occured to me that I got it from Delphi. Makes perfect sense :)