Skip to content

Instantly share code, notes, and snippets.

@EJSohn
Created May 2, 2018 12:14
Show Gist options
  • Save EJSohn/371d3e7402665ee95f4f108c59dce93e to your computer and use it in GitHub Desktop.
Save EJSohn/371d3e7402665ee95f4f108c59dce93e to your computer and use it in GitHub Desktop.
enum Cloud {
case cirrus
case cumulus
case altocumulus
case cumulonimbus
}
enum WeatherCondition {
case sunny(temperature: Float)
case rainy(inchesPerHour: Float)
case cloudy(cloudType: Cloud, windSpeed: Float)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment