Last active
September 27, 2019 10:33
-
-
Save RecuencoJones/9960ffcc932db406ebf97f5e52615253 to your computer and use it in GitHub Desktop.
Test go imports from gist
This file contains 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 utils | |
import "fmt" | |
func Greet(subject string) { | |
fmt.Println(subject) | |
} |
This file contains 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 ( | |
gist "gist.github.com/9960ffcc932db406ebf97f5e52615253.git" | |
) | |
func main() { | |
gist.Greet("David") | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment