Skip to content

Instantly share code, notes, and snippets.

@jjuliano
Last active December 16, 2019 11:02
Show Gist options
  • Save jjuliano/0b746fa47a67dfff3f9bbcad981e6e50 to your computer and use it in GitHub Desktop.
Save jjuliano/0b746fa47a67dfff3f9bbcad981e6e50 to your computer and use it in GitHub Desktop.
package main
import (
"time"
"github.com/foo/greeter"
weather "github.com/bar/climate"
)
func main() {
greeter.SayHello("John") // Hello John!
weather.SayWeather(time.Now()). // It will be sunny today. Overall it's a good weather!
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment