Skip to content

Instantly share code, notes, and snippets.

@laevandus
Created July 10, 2023 09:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save laevandus/a93b7fe2b22b61b8f0fc528c21b4d2c0 to your computer and use it in GitHub Desktop.
Save laevandus/a93b7fe2b22b61b8f0fc528c21b4d2c0 to your computer and use it in GitHub Desktop.
let method: BrewMethod = …
let hasSelection = …
let bannerText =
if !hasSelection {
"Please select a brewing method"
}
else if method == .chemex {
"Yada yada"
}
else {
"Other yada yada"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment