Last active
December 16, 2019 11:02
-
-
Save jjuliano/0b746fa47a67dfff3f9bbcad981e6e50 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
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