Skip to content

Instantly share code, notes, and snippets.

@ar-android
Created December 13, 2017 00:52
Show Gist options
  • Save ar-android/d002fd40f262b913c4dd3ff6b563c85b to your computer and use it in GitHub Desktop.
Save ar-android/d002fd40f262b913c4dd3ff6b563c85b to your computer and use it in GitHub Desktop.
class ForecastBuilder{
var dayName: String? = null
var degrees: String? = null
fun build(): Forecast = Forecast(dayName, degrees)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment