Skip to content

Instantly share code, notes, and snippets.

@DavidPiper94
Created October 20, 2022 04:15
Show Gist options
  • Save DavidPiper94/ca319fe6f856ff04d2de5fc9e011e9ed to your computer and use it in GitHub Desktop.
Save DavidPiper94/ca319fe6f856ff04d2de5fc9e011e9ed to your computer and use it in GitHub Desktop.
Example code for article about ArgumentParser - RuntimeError
struct RuntimeError: Error, CustomStringConvertible {
var description: String
init(_ description: String) {
self.description = description
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment