if you want to spot LLM-generated rust code, for some reason they love to always use match and eprintln for all error handling, regardless of if it makes sense.
Comments
Log in with your Bluesky account to leave a comment
it's basically only useful for trivial coreutils that print to stdout and also want to give warnings, anything more than that and you should probably set up a logging framework, and anything less than that, just return errors from main.
Comments