diff --git a/solutions/go/weather-forecast/1/weather_forecast.go b/solutions/go/weather-forecast/1/weather_forecast.go new file mode 100644 index 0000000..7022595 --- /dev/null +++ b/solutions/go/weather-forecast/1/weather_forecast.go @@ -0,0 +1,15 @@ +// Package weather The package comment should introduce the package and provide information relevant to the package as a whole. +package weather; + +// var ( +// CurrentCondition string +// CurrentLocation string +// ) + +// var CurrentCondition string +// var CurrentLocation string + +// func Forecast(city, condition string) string { +// CurrentLocation, CurrentCondition = city, condition +// return CurrentLocation + " - current weather condition: " + CurrentCondition +// }