Created
May 2, 2018 12:14
-
-
Save EJSohn/371d3e7402665ee95f4f108c59dce93e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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