Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions solutions/go/weather-forecast/1/weather_forecast.go
Original file line number Diff line number Diff line change
@@ -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
// }